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

Unified Diff: webrtc/modules/congestion_controller/delay_based_bwe.cc

Issue 2532993002: Revert of Pass time constant to bwe smoothing filter. (Closed)
Patch Set: Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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 04dadc489c0afac2a17e88510e2ea4397b5e9f4b..78bc7f0e6e4702210ba3709cdc17017930f4608c 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
@@ -180,8 +180,7 @@
trendline_window_size_(kDefaultTrendlineWindowSize),
trendline_smoothing_coeff_(kDefaultTrendlineSmoothingCoeff),
trendline_threshold_gain_(kDefaultTrendlineThresholdGain),
- in_trendline_experiment_(TrendlineFilterExperimentIsEnabled()),
- probing_interval_estimator_(&rate_control_) {
+ in_trendline_experiment_(TrendlineFilterExperimentIsEnabled()) {
if (in_trendline_experiment_) {
ReadTrendlineFilterExperimentParameters(&trendline_window_size_,
&trendline_smoothing_coeff_,
@@ -331,8 +330,4 @@
// be called from the network thread in the future.
rate_control_.SetMinBitrate(min_bitrate_bps);
}
-
-int64_t DelayBasedBwe::GetProbingIntervalMs() const {
- return probing_interval_estimator_.GetIntervalMs();
-}
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698