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

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

Issue 1908893003: Improve the behavior when the BWE times out and when we have too little data to determine the incom… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added owners. Created 4 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
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.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 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 uint32_t last_adjusted_bitrate_bps = 0; 79 uint32_t last_adjusted_bitrate_bps = 0;
80 uint32_t adjusted_bitrate_bps = 0; 80 uint32_t adjusted_bitrate_bps = 0;
81 81
82 SimulateBitrateBps(actual_bitrate_bps); 82 SimulateBitrateBps(actual_bitrate_bps);
83 VerifyAdjustment(); 83 VerifyAdjustment();
84 last_adjusted_bitrate_bps = adjuster_.GetAdjustedBitrateBps(); 84 last_adjusted_bitrate_bps = adjuster_.GetAdjustedBitrateBps();
85 85
86 SimulateBitrateBps(actual_bitrate_bps); 86 SimulateBitrateBps(actual_bitrate_bps);
87 VerifyAdjustment(); 87 VerifyAdjustment();
88 adjusted_bitrate_bps = adjuster_.GetAdjustedBitrateBps(); 88 adjusted_bitrate_bps = adjuster_.GetAdjustedBitrateBps();
89 EXPECT_LT(adjusted_bitrate_bps, last_adjusted_bitrate_bps); 89 EXPECT_LE(adjusted_bitrate_bps, last_adjusted_bitrate_bps);
90 last_adjusted_bitrate_bps = adjusted_bitrate_bps; 90 last_adjusted_bitrate_bps = adjusted_bitrate_bps;
91 // After two cycles we should've stabilized and hit the lower bound. 91 // After two cycles we should've stabilized and hit the lower bound.
92 EXPECT_EQ(GetTargetBitrateBpsPct(kMinAdjustedBitratePct), 92 EXPECT_EQ(GetTargetBitrateBpsPct(kMinAdjustedBitratePct),
93 adjusted_bitrate_bps); 93 adjusted_bitrate_bps);
94 94
95 // Simulate encoder settling down. Adjusted bitrate should increase. 95 // Simulate encoder settling down. Adjusted bitrate should increase.
96 SimulateBitrateBps(target_bitrate_bps); 96 SimulateBitrateBps(target_bitrate_bps);
97 adjusted_bitrate_bps = adjuster_.GetAdjustedBitrateBps(); 97 adjusted_bitrate_bps = adjuster_.GetAdjustedBitrateBps();
98 VerifyAdjustment(); 98 VerifyAdjustment();
99 EXPECT_GT(adjusted_bitrate_bps, last_adjusted_bitrate_bps); 99 EXPECT_GT(adjusted_bitrate_bps, last_adjusted_bitrate_bps);
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 EXPECT_EQ(initial_target_bitrate_bps, adjuster_.GetAdjustedBitrateBps()); 159 EXPECT_EQ(initial_target_bitrate_bps, adjuster_.GetAdjustedBitrateBps());
160 160
161 // 1.05 * 1.05 is 1.1 which is greater than tolerance for the initial target 161 // 1.05 * 1.05 is 1.1 which is greater than tolerance for the initial target
162 // bitrate. Since we didn't advance the clock the adjuster never updated. 162 // bitrate. Since we didn't advance the clock the adjuster never updated.
163 target_bitrate_bps = (1 + delta_pct) * target_bitrate_bps; 163 target_bitrate_bps = (1 + delta_pct) * target_bitrate_bps;
164 adjuster_.SetTargetBitrateBps(target_bitrate_bps); 164 adjuster_.SetTargetBitrateBps(target_bitrate_bps);
165 EXPECT_EQ(target_bitrate_bps, adjuster_.GetAdjustedBitrateBps()); 165 EXPECT_EQ(target_bitrate_bps, adjuster_.GetAdjustedBitrateBps());
166 } 166 }
167 167
168 } // namespace webrtc 168 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698