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

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

Issue 2650393002: Improve bitrate probing for the audio-only case. (Closed)
Patch Set: . Created 3 years, 11 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.cc
diff --git a/webrtc/modules/pacing/alr_detector.cc b/webrtc/modules/pacing/alr_detector.cc
index b31d4482bba37896bb7b0709d7e796d6e8c6eb53..9eeca2601228b8b36b9dc22f14ffe1d899f286c0 100644
--- a/webrtc/modules/pacing/alr_detector.cc
+++ b/webrtc/modules/pacing/alr_detector.cc
@@ -23,8 +23,8 @@ constexpr int kMeasurementPeriodMs = 500;
// kAlrStartUsagePercent and ends when it raises above kAlrEndUsagePercent.
// NOTE: This is intentionally conservative at the moment until BW adjustments
// of application limited region is fine tuned.
-constexpr int kAlrStartUsagePercent = 30;
-constexpr int kAlrEndUsagePercent = 50;
+constexpr int kAlrStartUsagePercent = 60;
+constexpr int kAlrEndUsagePercent = 70;
} // namespace

Powered by Google App Engine
This is Rietveld 408576698