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

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

Issue 2201093006: Tune BWE to be more sensitive on low capacity networks. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Tests passing. Created 4 years, 4 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.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
index 2f1ce36c303e9aacda0535a873a2376d3e58b6d2..477fc15f09b351f2bae4dd5a1e691d3538424c89 100644
--- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
+++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
@@ -19,6 +19,7 @@
#include "webrtc/base/checks.h"
#include "webrtc/base/common.h"
+#include "webrtc/base/logging.h"
#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h"
#include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h"
#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
@@ -59,11 +60,11 @@ bool ReadExperimentConstants(double* k_up, double* k_down) {
}
OveruseDetector::OveruseDetector(const OverUseDetectorOptions& options)
- // Experiment is on by default, but can be disabled with finch by setting
- // the field trial string to "WebRTC-AdaptiveBweThreshold/Disabled/".
+ // 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.004),
- k_down_(0.00006),
+ k_up_(0.0087),
+ k_down_(0.039),
overusing_time_threshold_(100),
options_(options),
threshold_(12.5),

Powered by Google App Engine
This is Rietveld 408576698