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

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

Issue 2631293003: Parse MedianSlopeFilter-parameters to the correct variables. (Closed)
Patch Set: Created 3 years, 11 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6338f9646f998db7cd0b77585a949eed06f19d2e..7a20b3eedb4fea1556931d8935c5218591a71a8d 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
@@ -230,8 +230,8 @@ DelayBasedBwe::DelayBasedBwe(Clock* clock)
&trendline_threshold_gain_);
}
if (in_median_slope_experiment_) {
- ReadMedianSlopeFilterExperimentParameters(&trendline_window_size_,
- &trendline_threshold_gain_);
+ ReadMedianSlopeFilterExperimentParameters(&median_slope_window_size_,
+ &median_slope_threshold_gain_);
}
network_thread_.DetachFromThread();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698