| Index: webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| index a57ea16584091075b92d0dc21306b531d84befea..93bd05f2922e7b0773d0e508b2be06cbdfbbd793 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| @@ -60,14 +60,13 @@ bool ReadExperimentConstants(double* k_up, double* k_down) {
|
| "%lf,%lf", k_up, k_down) == 2;
|
| }
|
|
|
| -OveruseDetector::OveruseDetector(const OverUseDetectorOptions& options)
|
| +OveruseDetector::OveruseDetector()
|
| // Experiment is on by default, but can be disabled with finch by setting
|
| // the field trial string to "WebRTC-AdaptiveBweThreshold/Disabled/".
|
| : in_experiment_(!AdaptiveThresholdExperimentIsDisabled()),
|
| k_up_(0.0087),
|
| k_down_(0.039),
|
| overusing_time_threshold_(100),
|
| - options_(options),
|
| threshold_(12.5),
|
| last_update_ms_(-1),
|
| prev_offset_(0.0),
|
|
|