Chromium Code Reviews| Index: webrtc/call/rampup_tests.cc |
| diff --git a/webrtc/call/rampup_tests.cc b/webrtc/call/rampup_tests.cc |
| index 292edc60836b4533d7ce5cb2c45fbee869821bd6..0eb6b0fd8717264097c44c979ff743f764d407f9 100644 |
| --- a/webrtc/call/rampup_tests.cc |
| +++ b/webrtc/call/rampup_tests.cc |
| @@ -25,6 +25,7 @@ static const int kExpectedHighVideoBitrateBps = 80000; |
| static const int kExpectedHighAudioBitrateBps = 30000; |
| static const int kLowBandwidthLimitBps = 20000; |
| static const int kExpectedLowBitrateBps = 20000; |
| +static const int kUnlimitedCapacityBps = 10000000; |
| std::vector<uint32_t> GenerateSsrcs(size_t num_streams, uint32_t ssrc_offset) { |
| std::vector<uint32_t> ssrcs; |
| @@ -396,8 +397,9 @@ RampUpDownUpTester::RampUpDownUpTester(size_t num_video_streams, |
| rtx, |
| red, |
| report_perf_stats), |
| - link_rates_({GetHighLinkCapacity(), kLowBandwidthLimitBps / 1000, |
| - GetHighLinkCapacity(), 0}), |
| + link_rates_({GetExpectedHighBitrate() / 1000, |
| + kLowBandwidthLimitBps / 1000, kUnlimitedCapacityBps / 1000, |
|
stefan-webrtc
2017/03/14 16:05:23
This change is to reduce flakiness in these tests.
|
| + 0}), |
| test_state_(kFirstRampup), |
| next_state_(kTransitionToNextState), |
| state_start_ms_(clock_->TimeInMilliseconds()), |
| @@ -467,10 +469,6 @@ int RampUpDownUpTester::GetExpectedHighBitrate() const { |
| return expected_bitrate_bps; |
| } |
| -int RampUpDownUpTester::GetHighLinkCapacity() const { |
| - return 4 * GetExpectedHighBitrate() / (3 * 1000); |
| -} |
| - |
| size_t RampUpDownUpTester::GetFecBytes() const { |
| size_t flex_fec_bytes = 0; |
| if (num_flexfec_streams_ > 0) { |