| Index: webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| index 56e9c14206c4dfc99b9b3ab0bb00bf776683accd..ce61e3b4d9a8c7d9bd40411e22ff354336f95071 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| @@ -20,7 +20,7 @@
|
| namespace webrtc {
|
| enum RateControlRegion;
|
|
|
| -bool AdaptiveThresholdExperimentIsEnabled();
|
| +bool AdaptiveThresholdExperimentIsDisabled();
|
|
|
| class OveruseDetector {
|
| public:
|
| @@ -45,7 +45,7 @@ class OveruseDetector {
|
| void UpdateThreshold(double modified_offset, int64_t now_ms);
|
| void InitializeExperiment();
|
|
|
| - const bool in_experiment_;
|
| + bool in_experiment_;
|
| double k_up_;
|
| double k_down_;
|
| double overusing_time_threshold_;
|
|
|