Index: webrtc/call/rampup_tests.cc |
diff --git a/webrtc/call/rampup_tests.cc b/webrtc/call/rampup_tests.cc |
index 0a2a7384d8dd7d0ad1eec0a1c68a88ee3b8b939c..6c3cce60103010e41f669f02a0f683aed43a248c 100644 |
--- a/webrtc/call/rampup_tests.cc |
+++ b/webrtc/call/rampup_tests.cc |
@@ -417,8 +417,9 @@ RampUpDownUpTester::RampUpDownUpTester(size_t num_video_streams, |
rtx, |
red, |
report_perf_stats), |
- link_rates_({GetHighLinkCapacity(), kLowBandwidthLimitBps / 1000, |
- GetHighLinkCapacity(), 0}), |
+ link_rates_({4 * GetExpectedHighBitrate() / (3 * 1000), |
+ kLowBandwidthLimitBps / 1000, |
+ 4 * GetExpectedHighBitrate() / (3 * 1000), 0}), |
test_state_(kFirstRampup), |
next_state_(kTransitionToNextState), |
state_start_ms_(clock_->TimeInMilliseconds()), |
@@ -488,10 +489,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) { |