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

Unified Diff: webrtc/modules/congestion_controller/probe_controller.cc

Issue 2535903003: Reduce ProbeController::kDefaultMaxProbingBitrateBps to 10 Mbps. (Closed)
Patch Set: kDefaultMaxProbingBitrateBps = 10000000 Created 4 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/congestion_controller/probe_controller.cc
diff --git a/webrtc/modules/congestion_controller/probe_controller.cc b/webrtc/modules/congestion_controller/probe_controller.cc
index 5f42cf44fdace8e62ee1ddbfc563f7aefbe8b777..757e2a1626f88bd816f0ad1d7f353234abe32227 100644
--- a/webrtc/modules/congestion_controller/probe_controller.cc
+++ b/webrtc/modules/congestion_controller/probe_controller.cc
@@ -35,7 +35,7 @@ constexpr int kExponentialProbingDisabled = 0;
// Default probing bitrate limit. Applied only when the application didn't
// specify max bitrate.
-constexpr int kDefaultMaxProbingBitrateBps = 100000000;
+constexpr int kDefaultMaxProbingBitrateBps = 5000000;
// This is a limit on how often probing can be done when there is a BW
// drop detected in ALR.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698