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

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

Issue 2682893003: Log information (at level LS_INFO) about which overuse estimator is used. (Closed)
Patch Set: Created 3 years, 10 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 0febf6f4355edbf0a69e95aa34fe91dc19e8a979..00074a4b245dd9feccb0f10a055f308024c53882 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
@@ -228,10 +228,19 @@ DelayBasedBwe::DelayBasedBwe(Clock* clock)
ReadTrendlineFilterExperimentParameters(&trendline_window_size_,
&trendline_smoothing_coeff_,
&trendline_threshold_gain_);
+ LOG(LS_INFO) << "Trendline filter experiment enabled with parameters "
+ << trendline_window_size_ << ',' << trendline_smoothing_coeff_
+ << ',' << trendline_threshold_gain_;
}
if (in_median_slope_experiment_) {
ReadMedianSlopeFilterExperimentParameters(&median_slope_window_size_,
&median_slope_threshold_gain_);
+ LOG(LS_INFO) << "Median-slope filter experiment enabled with parameters "
+ << median_slope_window_size_ << ','
+ << median_slope_threshold_gain_;
+ }
+ if (!in_trendline_experiment_ && !in_median_slope_experiment_) {
+ LOG(LS_INFO) << "No overuse experiment enabled. Using Kalman filter.";
}
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