| 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);
|
|
|