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

Side by Side Diff: webrtc/modules/video_coding/nack_module_unittest.cc

Issue 1972123002: Nack count returned on OnReceivedPacket. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Feedback fix. Created 4 years, 7 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
« no previous file with comments | « webrtc/modules/video_coding/nack_module.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 EXPECT_EQ(30u, sent_nacks_.size()); 283 EXPECT_EQ(30u, sent_nacks_.size());
284 284
285 sent_nacks_.clear(); 285 sent_nacks_.clear();
286 clock_->AdvanceTimeMilliseconds(100); 286 clock_->AdvanceTimeMilliseconds(100);
287 nack_module_.ClearUpTo(0); 287 nack_module_.ClearUpTo(0);
288 nack_module_.Process(); 288 nack_module_.Process();
289 EXPECT_EQ(15u, sent_nacks_.size()); 289 EXPECT_EQ(15u, sent_nacks_.size());
290 EXPECT_EQ(0, sent_nacks_[0]); 290 EXPECT_EQ(0, sent_nacks_[0]);
291 } 291 }
292 292
293 TEST_F(TestNackModule, PacketNackCount) {
294 VCMPacket packet;
295 packet.seqNum = 0;
296 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet));
297 packet.seqNum = 2;
298 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet));
299 packet.seqNum = 1;
300 EXPECT_EQ(1, nack_module_.OnReceivedPacket(packet));
301
302 sent_nacks_.clear();
303 nack_module_.UpdateRtt(100);
304 packet.seqNum = 5;
305 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet));
306 clock_->AdvanceTimeMilliseconds(100);
307 nack_module_.Process();
308 clock_->AdvanceTimeMilliseconds(100);
309 nack_module_.Process();
310 packet.seqNum = 3;
311 EXPECT_EQ(3, nack_module_.OnReceivedPacket(packet));
312 packet.seqNum = 4;
313 EXPECT_EQ(3, nack_module_.OnReceivedPacket(packet));
314 EXPECT_EQ(0, nack_module_.OnReceivedPacket(packet));
315 }
316
293 } // namespace webrtc 317 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/nack_module.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698