OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |