Index: webrtc/modules/congestion_controller/delay_based_bwe.cc |
diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.cc b/webrtc/modules/congestion_controller/delay_based_bwe.cc |
index 11ea0e976a5e1e81b015c003194649bebcd60b86..26c2218283faa7d53a1fee0265f7d426cf83e7d3 100644 |
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc |
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc |
@@ -160,7 +160,6 @@ DelayBasedBwe::DelayBasedBwe(RtcEventLog* event_log, const Clock* clock) |
trendline_window_size_(kDefaultTrendlineWindowSize), |
trendline_smoothing_coeff_(kDefaultTrendlineSmoothingCoeff), |
trendline_threshold_gain_(kDefaultTrendlineThresholdGain), |
- probing_interval_estimator_(&rate_control_), |
consecutive_delayed_feedbacks_(0), |
last_logged_bitrate_(0), |
last_logged_state_(kBwNormal) { |
@@ -357,7 +356,7 @@ void DelayBasedBwe::SetMinBitrate(int min_bitrate_bps) { |
rate_control_.SetMinBitrate(min_bitrate_bps); |
} |
-int64_t DelayBasedBwe::GetProbingIntervalMs() const { |
- return probing_interval_estimator_.GetIntervalMs(); |
+int64_t DelayBasedBwe::GetExpectedBwePeriodMs() const { |
+ return rate_control_.GetExpectedBandwidthPeriodMs(); |
} |
} // namespace webrtc |