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

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

Issue 1151603008: Make the BWE threshold adaptive. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix string length issue. 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 24 matching lines...) Expand all
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(1089);
42 } 42 }
43 43
44 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStream) { 44 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStream) {
45 CapacityDropTestHelper(1, false, 700); 45 CapacityDropTestHelper(1, false, 567);
46 } 46 }
47 47
48 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStreamWrap) { 48 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStreamWrap) {
49 CapacityDropTestHelper(1, true, 700); 49 CapacityDropTestHelper(1, true, 567);
50 } 50 }
51 51
52 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropTwoStreamsWrap) { 52 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropTwoStreamsWrap) {
53 CapacityDropTestHelper(2, true, 666); 53 CapacityDropTestHelper(2, true, 667);
54 } 54 }
55 55
56 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThreeStreamsWrap) { 56 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThreeStreamsWrap) {
57 CapacityDropTestHelper(3, true, 700); 57 CapacityDropTestHelper(3, true, 633);
58 } 58 }
59 59
60 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirteenStreamsWrap) { 60 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirteenStreamsWrap) {
61 CapacityDropTestHelper(13, true, 700); 61 CapacityDropTestHelper(13, true, 633);
62 } 62 }
63 63
64 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropNineteenStreamsWrap) { 64 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropNineteenStreamsWrap) {
65 CapacityDropTestHelper(19, true, 700); 65 CapacityDropTestHelper(19, true, 633);
66 } 66 }
67 67
68 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirtyStreamsWrap) { 68 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirtyStreamsWrap) {
69 CapacityDropTestHelper(30, true, 700); 69 CapacityDropTestHelper(30, true, 600);
70 } 70 }
71 71
72 TEST_F(RemoteBitrateEstimatorSingleTest, TestTimestampGrouping) { 72 TEST_F(RemoteBitrateEstimatorSingleTest, TestTimestampGrouping) {
73 TestTimestampGroupingTestHelper(); 73 TestTimestampGroupingTestHelper(361080u);
74 } 74 }
75 } // namespace webrtc 75 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698