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

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

Issue 1376423002: Make overuse estimator one dimensional. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Further cleanups. Created 5 years, 2 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStreamWrap) { 46 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropOneStreamWrap) {
47 CapacityDropTestHelper(1, true, 600); 47 CapacityDropTestHelper(1, true, 600);
48 } 48 }
49 49
50 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropTwoStreamsWrap) { 50 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropTwoStreamsWrap) {
51 CapacityDropTestHelper(2, true, 700); 51 CapacityDropTestHelper(2, true, 700);
52 } 52 }
53 53
54 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThreeStreamsWrap) { 54 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThreeStreamsWrap) {
55 CapacityDropTestHelper(3, true, 734); 55 CapacityDropTestHelper(3, true, 567);
terelius 2015/10/12 12:04:41 Use of expected_drop_delta? Reason for change?
stefan-webrtc 2015/11/24 16:08:03 I analyzed this and this is just a matter of timin
56 } 56 }
57 57
58 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirteenStreamsWrap) { 58 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirteenStreamsWrap) {
59 CapacityDropTestHelper(13, true, 700); 59 CapacityDropTestHelper(13, true, 700);
60 } 60 }
61 61
62 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropNineteenStreamsWrap) { 62 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropNineteenStreamsWrap) {
63 CapacityDropTestHelper(19, true, 700); 63 CapacityDropTestHelper(19, true, 700);
64 } 64 }
65 65
66 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirtyStreamsWrap) { 66 TEST_F(RemoteBitrateEstimatorSingleTest, CapacityDropThirtyStreamsWrap) {
67 CapacityDropTestHelper(30, true, 700); 67 CapacityDropTestHelper(30, true, 700);
68 } 68 }
69 69
70 TEST_F(RemoteBitrateEstimatorSingleTest, TestTimestampGrouping) { 70 TEST_F(RemoteBitrateEstimatorSingleTest, TestTimestampGrouping) {
71 TestTimestampGroupingTestHelper(); 71 TestTimestampGroupingTestHelper();
72 } 72 }
73 } // namespace webrtc 73 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698