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

Unified Diff: webrtc/video/screenshare_loopback.cc

Issue 1871543002: Update default parameters in screenshare_loopback test (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
« 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/video/screenshare_loopback.cc
diff --git a/webrtc/video/screenshare_loopback.cc b/webrtc/video/screenshare_loopback.cc
index 91002ef9043484f0b82b8b650e35ee3c617d0d00..912aaaddc45ff7a163a461cd04a02a102ea9d7be 100644
--- a/webrtc/video/screenshare_loopback.cc
+++ b/webrtc/video/screenshare_loopback.cc
@@ -41,12 +41,14 @@ int MinBitrateKbps() {
return static_cast<int>(FLAGS_min_bitrate);
}
-DEFINE_int32(start_bitrate, 200, "Call start bitrate in kbps.");
+DEFINE_int32(start_bitrate,
+ Call::Config::kDefaultStartBitrateBps / 1000,
+ "Call start bitrate in kbps.");
int StartBitrateKbps() {
return static_cast<int>(FLAGS_start_bitrate);
}
-DEFINE_int32(target_bitrate, 2000, "Stream target bitrate in kbps.");
+DEFINE_int32(target_bitrate, 200, "Stream target bitrate in kbps.");
int TargetBitrateKbps() {
return static_cast<int>(FLAGS_target_bitrate);
}
« 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