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

Unified Diff: webrtc/modules/pacing/alr_detector.h

Issue 2970653004: Reimplemeted "Test and fix for huge bwe drop after alr state" (Closed)
Patch Set: Respond to comments Created 3 years, 5 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/pacing/alr_detector.h
diff --git a/webrtc/modules/pacing/alr_detector.h b/webrtc/modules/pacing/alr_detector.h
index 11eeceaa988a65bdff24308e294902f1eaa23567..7e630970e6345f31fdb399bf322525c071eff26e 100644
--- a/webrtc/modules/pacing/alr_detector.h
+++ b/webrtc/modules/pacing/alr_detector.h
@@ -27,7 +27,6 @@ namespace webrtc {
// AlrDetector provides a signal that can be utilized to adjust
// estimate bandwidth.
// Note: This class is not thread-safe.
-
class AlrDetector {
public:
AlrDetector();
@@ -57,8 +56,8 @@ class AlrDetector {
// kAlrEndUsagePercent. NOTE: This is intentionally conservative at the moment
// until BW adjustments of application limited region is fine tuned.
static constexpr int kDefaultAlrBandwidthUsagePercent = 65;
- static constexpr int kDefaultAlrStartBudgetLevelPercent = 20;
- static constexpr int kDefaultAlrStopBudgetLevelPercent = -20;
+ static constexpr int kDefaultAlrStartBudgetLevelPercent = 80;
+ static constexpr int kDefaultAlrStopBudgetLevelPercent = 50;
static const char* kScreenshareProbingBweExperimentName;
void UpdateBudgetWithElapsedTime(int64_t delta_time_ms);

Powered by Google App Engine
This is Rietveld 408576698