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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.cc

Issue 1219303002: Fix issue where the first audio packets significantly impacts initial BWE negatively. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Comments addressed. Created 5 years, 5 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 20 matching lines...) Expand all
31 31
32 TEST_F(RemoteBitrateEstimatorSingleTest, InitialBehavior) { 32 TEST_F(RemoteBitrateEstimatorSingleTest, InitialBehavior) {
33 InitialBehaviorTestHelper(508017); 33 InitialBehaviorTestHelper(508017);
34 } 34 }
35 35
36 TEST_F(RemoteBitrateEstimatorSingleTest, RateIncreaseReordering) { 36 TEST_F(RemoteBitrateEstimatorSingleTest, RateIncreaseReordering) {
37 RateIncreaseReorderingTestHelper(506422); 37 RateIncreaseReorderingTestHelper(506422);
38 } 38 }
39 39
40 TEST_F(RemoteBitrateEstimatorSingleTest, RateIncreaseRtpTimestamps) { 40 TEST_F(RemoteBitrateEstimatorSingleTest, RateIncreaseRtpTimestamps) {
41 RateIncreaseRtpTimestampsTestHelper(1089); 41 RateIncreaseRtpTimestampsTestHelper(1240);
42 } 42 }
43 43
44 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStream) { 44 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStream) {
45 CapacityDropTestHelper(1, false, 567); 45 CapacityDropTestHelper(1, false, 600);
46 } 46 }
47 47
48 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStreamWrap) { 48 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStreamWrap) {
49 CapacityDropTestHelper(1, true, 567); 49 CapacityDropTestHelper(1, true, 600);
50 } 50 }
51 51
52 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropTwoStreamsWrap) { 52 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropTwoStreamsWrap) {
53 CapacityDropTestHelper(2, true, 667); 53 CapacityDropTestHelper(2, true, 700);
54 } 54 }
55 55
56 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThreeStreamsWrap) { 56 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThreeStreamsWrap) {
57 CapacityDropTestHelper(3, true, 633); 57 CapacityDropTestHelper(3, true, 734);
58 } 58 }
59 59
60 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirteenStreamsWrap) { 60 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirteenStreamsWrap) {
61 CapacityDropTestHelper(13, true, 633); 61 CapacityDropTestHelper(13, true, 700);
62 } 62 }
63 63
64 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropNineteenStreamsWrap) { 64 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropNineteenStreamsWrap) {
65 CapacityDropTestHelper(19, true, 633); 65 CapacityDropTestHelper(19, true, 700);
66 } 66 }
67 67
68 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirtyStreamsWrap) { 68 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirtyStreamsWrap) {
69 CapacityDropTestHelper(30, true, 600); 69 CapacityDropTestHelper(30, true, 700);
70 } 70 }
71 71
72 TEST_F(RemoteBitrateEstimatorSingleTest, TestTimestampGrouping) { 72 TEST_F(RemoteBitrateEstimatorSingleTest, TestTimestampGrouping) {
73 TestTimestampGroupingTestHelper(361080u); 73 TestTimestampGroupingTestHelper();
74 } 74 }
75 } // namespace webrtc 75 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698