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

Unified Diff: webrtc/modules/remote_bitrate_estimator/overuse_detector.h

Issue 1682403002: Enable adaptive threshold experiment by default. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Tune tests Created 4 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
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_;

Powered by Google App Engine
This is Rietveld 408576698