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

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

Issue 2777333003: Enable trendline experiment and bayesian bitrate estimator experiment by default. (Closed)
Patch Set: Created 3 years, 9 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
Index: webrtc/modules/congestion_controller/delay_based_bwe.h
diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.h b/webrtc/modules/congestion_controller/delay_based_bwe.h
index 5ae60f7d21255480eb95fe2ebb65c64087f60434..a88a176f847322810e4bc3ee1b85a931a6b3a3ef 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe.h
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.h
@@ -89,14 +89,12 @@ class DelayBasedBwe {
int64_t now_ms,
rtc::Optional<uint32_t> acked_bitrate_bps,
uint32_t* target_bitrate_bps);
- const bool in_trendline_experiment_;
const bool in_median_slope_experiment_;
terelius 2017/03/28 12:18:21 I think we can remove the median slope experiment
stefan-webrtc 2017/03/30 08:30:47 Done.
rtc::ThreadChecker network_thread_;
RtcEventLog* const event_log_;
const Clock* const clock_;
std::unique_ptr<InterArrival> inter_arrival_;
- std::unique_ptr<OveruseEstimator> kalman_estimator_;
std::unique_ptr<TrendlineEstimator> trendline_estimator_;
std::unique_ptr<MedianSlopeEstimator> median_slope_estimator_;
OveruseDetector detector_;

Powered by Google App Engine
This is Rietveld 408576698