Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: webrtc/modules/pacing/packet_router_unittest.cc

Issue 2789843002: Delete VieRemb class, move functionality to PacketRouter. (Closed)
Patch Set: Fix rebase error. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <list> 11 #include <list>
12 #include <memory> 12 #include <memory>
13 13
14 #include "webrtc/base/checks.h" 14 #include "webrtc/base/checks.h"
15 #include "webrtc/base/fakeclock.h"
15 #include "webrtc/modules/pacing/packet_router.h" 16 #include "webrtc/modules/pacing/packet_router.h"
16 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" 17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
17 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h" 18 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h"
18 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" 19 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h"
19 #include "webrtc/test/gmock.h" 20 #include "webrtc/test/gmock.h"
20 #include "webrtc/test/gtest.h" 21 #include "webrtc/test/gtest.h"
21 22
22 using ::testing::_; 23 using ::testing::_;
23 using ::testing::AnyNumber; 24 using ::testing::AnyNumber;
24 using ::testing::Field; 25 using ::testing::Field;
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 236
236 packet_router_->SetTransportWideSequenceNumber(kStartSeq - 1); 237 packet_router_->SetTransportWideSequenceNumber(kStartSeq - 1);
237 238
238 for (size_t i = 0; i < kNumPackets; ++i) { 239 for (size_t i = 0; i < kNumPackets; ++i) {
239 uint16_t seq = packet_router_->AllocateSequenceNumber(); 240 uint16_t seq = packet_router_->AllocateSequenceNumber();
240 uint32_t expected_unwrapped_seq = static_cast<uint32_t>(kStartSeq) + i; 241 uint32_t expected_unwrapped_seq = static_cast<uint32_t>(kStartSeq) + i;
241 EXPECT_EQ(static_cast<uint16_t>(expected_unwrapped_seq & 0xFFFF), seq); 242 EXPECT_EQ(static_cast<uint16_t>(expected_unwrapped_seq & 0xFFFF), seq);
242 } 243 }
243 } 244 }
244 245
245 TEST_F(PacketRouterTest, SendFeedback) { 246 TEST_F(PacketRouterTest, SendTransportFeedback) {
246 MockRtpRtcp rtp_1; 247 MockRtpRtcp rtp_1;
247 MockRtpRtcp rtp_2; 248 MockRtpRtcp rtp_2;
248 packet_router_->AddSendRtpModule(&rtp_1); 249 packet_router_->AddSendRtpModule(&rtp_1);
249 packet_router_->AddReceiveRtpModule(&rtp_2); 250 packet_router_->AddReceiveRtpModule(&rtp_2);
250 251
251 rtcp::TransportFeedback feedback; 252 rtcp::TransportFeedback feedback;
252 EXPECT_CALL(rtp_1, SendFeedbackPacket(_)).Times(1); 253 EXPECT_CALL(rtp_1, SendFeedbackPacket(_)).Times(1);
253 packet_router_->SendFeedback(&feedback); 254 packet_router_->SendTransportFeedback(&feedback);
254 packet_router_->RemoveSendRtpModule(&rtp_1); 255 packet_router_->RemoveSendRtpModule(&rtp_1);
255 EXPECT_CALL(rtp_2, SendFeedbackPacket(_)).Times(1); 256 EXPECT_CALL(rtp_2, SendFeedbackPacket(_)).Times(1);
256 packet_router_->SendFeedback(&feedback); 257 packet_router_->SendTransportFeedback(&feedback);
257 packet_router_->RemoveReceiveRtpModule(&rtp_2); 258 packet_router_->RemoveReceiveRtpModule(&rtp_2);
258 } 259 }
260
261 TEST(PacketRouterRembTest, PreferSendModuleOverReceiveModule) {
262 rtc::ScopedFakeClock clock;
263 MockRtpRtcp rtp_recv;
264 MockRtpRtcp rtp_send;
265 PacketRouter packet_router;
266
267 EXPECT_CALL(rtp_recv, SetREMBStatus(true)).Times(1);
268 packet_router.AddReceiveRtpModule(&rtp_recv);
269
270 const uint32_t bitrate_estimate = 456;
danilchap 2017/04/13 12:27:46 may be either remove const, or change variable nam
nisse-webrtc 2017/04/18 09:51:16 I prefer to not change. |bitrate_estimate| is the
danilchap 2017/04/18 10:13:56 You right, for local variables it is not required.
271 const std::vector<uint32_t> ssrcs { 1234 };
danilchap 2017/04/13 12:27:46 add = between declaration and the init value. http
nisse-webrtc 2017/04/18 09:51:16 Done. (In several places).
272
273 ON_CALL(rtp_recv, REMB()).WillByDefault(Return(true));
274 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
275
276 // Call OnReceiveBitrateChanged twice to get a first estimate.
277 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
278 EXPECT_CALL(rtp_recv, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
279 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
280
281 // Add a send module, which should be preferred over the receive module.
282 EXPECT_CALL(rtp_recv, SetREMBStatus(false)).Times(1);
283 EXPECT_CALL(rtp_send, SetREMBStatus(true)).Times(1);
284 packet_router.AddSendRtpModule(&rtp_send);
285 ON_CALL(rtp_recv, REMB()).WillByDefault(Return(false));
286 ON_CALL(rtp_send, REMB()).WillByDefault(Return(true));
287
288 // Lower bitrate to send another REMB packet.
289 EXPECT_CALL(rtp_send, SetREMBData(bitrate_estimate - 100, ssrcs)).Times(1);
290 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate - 100);
291
292 EXPECT_CALL(rtp_send, SetREMBStatus(false)).Times(1);
293 EXPECT_CALL(rtp_recv, SetREMBStatus(true)).Times(1);
294 packet_router.RemoveSendRtpModule(&rtp_send);
295 EXPECT_CALL(rtp_recv, SetREMBStatus(false)).Times(1);
296 packet_router.RemoveReceiveRtpModule(&rtp_recv);
297 }
298
299 TEST(PacketRouterRembTest, LowerEstimateToSendRemb) {
300 rtc::ScopedFakeClock clock;
301 MockRtpRtcp rtp;
302 PacketRouter packet_router;
303
304 EXPECT_CALL(rtp, SetREMBStatus(true)).Times(1);
305 packet_router.AddSendRtpModule(&rtp);
306
307 uint32_t bitrate_estimate = 456;
308 const std::vector<uint32_t> ssrcs { 1234 };
309
310 ON_CALL(rtp, REMB()).WillByDefault(Return(true));
311 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
312
313 // Call OnReceiveBitrateChanged twice to get a first estimate.
314 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
315 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
316 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
317
318 // Lower the estimate with more than 3% to trigger a call to SetREMBData right
319 // away.
320 bitrate_estimate = bitrate_estimate - 100;
321 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
322 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
323
324 EXPECT_CALL(rtp, SetREMBStatus(false)).Times(1);
325 packet_router.RemoveSendRtpModule(&rtp);
326 }
327
328 TEST(PacketRouterRembTest, VerifyIncreasingAndDecreasing) {
329 rtc::ScopedFakeClock clock;
330 MockRtpRtcp rtp;
331 PacketRouter packet_router;
332 packet_router.AddSendRtpModule(&rtp);
333
334 uint32_t bitrate_estimate[] = {456, 789};
335 uint32_t ssrc[] = {1234, 5678};
danilchap 2017/04/13 12:27:46 is this value needed for anything other than initi
nisse-webrtc 2017/04/18 09:51:16 No, I'm moving the list to the initializer for ssr
336 std::vector<uint32_t> ssrcs(ssrc, ssrc + sizeof(ssrc) / sizeof(ssrc[0]));
337
338 ON_CALL(rtp, REMB()).WillByDefault(Return(true));
339 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate[0]);
340
341 // Call OnReceiveBitrateChanged twice to get a first estimate.
342 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate[0], ssrcs)).Times(1);
343 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
344 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate[0]);
345
346 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate[1] + 100);
347
348 // Lower the estimate to trigger a callback.
349 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate[1], ssrcs)).Times(1);
350 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate[1]);
351
352 packet_router.RemoveSendRtpModule(&rtp);
353 }
354
355 TEST(PacketRouterRembTest, NoRembForIncreasedBitrate) {
356 rtc::ScopedFakeClock clock;
357 MockRtpRtcp rtp;
358 PacketRouter packet_router;
359 packet_router.AddSendRtpModule(&rtp);
360
361 uint32_t bitrate_estimate = 456;
362 uint32_t ssrc[] = {1234, 5678};
363 std::vector<uint32_t> ssrcs(ssrc, ssrc + sizeof(ssrc) / sizeof(ssrc[0]));
364
365 ON_CALL(rtp, REMB()).WillByDefault(Return(true));
366 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
367
368 // Call OnReceiveBitrateChanged twice to get a first estimate.
369 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
370 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
371 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
372
373 // Increased estimate shouldn't trigger a callback right away.
374 EXPECT_CALL(rtp, SetREMBData(_, _)).Times(0);
375 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate + 1);
376
377 // Decreasing the estimate less than 3% shouldn't trigger a new callback.
378 EXPECT_CALL(rtp, SetREMBData(_, _)).Times(0);
379 int lower_estimate = bitrate_estimate * 98 / 100;
380 packet_router.OnReceiveBitrateChanged(ssrcs, lower_estimate);
381
382 packet_router.RemoveSendRtpModule(&rtp);
383 }
384
385 TEST(PacketRouterRembTest, ChangeSendRtpModule) {
386 rtc::ScopedFakeClock clock;
387 MockRtpRtcp rtp_send;
388 MockRtpRtcp rtp_recv;
389 PacketRouter packet_router;
390 packet_router.AddSendRtpModule(&rtp_send);
391 packet_router.AddReceiveRtpModule(&rtp_recv);
392
393 uint32_t bitrate_estimate = 456;
394 uint32_t ssrc[] = {1234, 5678};
395 std::vector<uint32_t> ssrcs(ssrc, ssrc + sizeof(ssrc) / sizeof(ssrc[0]));
396
397 ON_CALL(rtp_send, REMB()).WillByDefault(Return(true));
398 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
399
400 // Call OnReceiveBitrateChanged twice to get a first estimate.
401 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
402 EXPECT_CALL(rtp_send, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
403 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
404
405 // Decrease estimate to trigger a REMB.
406 bitrate_estimate = bitrate_estimate - 100;
407 EXPECT_CALL(rtp_send, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
408 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
409
410 // Remove the sending module -> should get remb on the second module.
411 packet_router.RemoveSendRtpModule(&rtp_send);
412
413 ON_CALL(rtp_send, REMB()).WillByDefault(Return(false));
414 ON_CALL(rtp_recv, REMB()).WillByDefault(Return(true));
415
416 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
417
418 bitrate_estimate = bitrate_estimate - 100;
419 EXPECT_CALL(rtp_recv, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
420 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
421
422 packet_router.RemoveReceiveRtpModule(&rtp_recv);
423 }
424
425 TEST(PacketRouterRembTest, OnlyOneRembForRepeatedOnReceiveBitrateChanged) {
426 rtc::ScopedFakeClock clock;
427 MockRtpRtcp rtp;
428 PacketRouter packet_router;
429 packet_router.AddSendRtpModule(&rtp);
430
431 uint32_t bitrate_estimate = 456;
432 const std::vector<uint32_t> ssrcs { 1234 };
433
434 ON_CALL(rtp, REMB()).WillByDefault(Return(true));
435 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
436
437 // Call OnReceiveBitrateChanged twice to get a first estimate.
438 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
439 EXPECT_CALL(rtp, SetREMBData(_, _)).Times(1);
440 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
441
442 // Lower the estimate, should trigger a call to SetREMBData right away.
443 bitrate_estimate = bitrate_estimate - 100;
444 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
445 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
446
447 // Call OnReceiveBitrateChanged again, this should not trigger a new callback.
448 EXPECT_CALL(rtp, SetREMBData(_, _)).Times(0);
449 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
450 packet_router.RemoveSendRtpModule(&rtp);
451 }
452
453 // Only register receiving modules and make sure we fallback to trigger a REMB
454 // packet on this one.
455 TEST(PacketRouterRembTest, NoSendingRtpModule) {
456 rtc::ScopedFakeClock clock;
457 MockRtpRtcp rtp;
458 PacketRouter packet_router;
459
460 EXPECT_CALL(rtp, SetREMBStatus(true)).Times(1);
461 packet_router.AddReceiveRtpModule(&rtp);
462
463 uint32_t bitrate_estimate = 456;
464 const std::vector<uint32_t> ssrcs { 1234 };
465
466 ON_CALL(rtp, REMB()).WillByDefault(Return(true));
467 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
468
469 // Call OnReceiveBitrateChanged twice to get a first estimate.
470 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1000));
471 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate, ssrcs)).Times(1);
472 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate);
473
474 // Lower the estimate to trigger a new packet REMB packet.
475 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate - 100, ssrcs)).Times(1);
476 packet_router.OnReceiveBitrateChanged(ssrcs, bitrate_estimate - 100);
477
478 EXPECT_CALL(rtp, SetREMBStatus(false)).Times(1);
479 packet_router.RemoveReceiveRtpModule(&rtp);
480 }
481
259 } // namespace webrtc 482 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/pacing/packet_router.cc ('k') | webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698