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

Unified Diff: media/cast/test/simulator.cc

Issue 473373002: Cast: cast_simulator to use the same settings at the extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: media/cast/test/simulator.cc
diff --git a/media/cast/test/simulator.cc b/media/cast/test/simulator.cc
index b3360c8722b0b06518b2fefd711e902f75cfcb89..39ff725a86409708ce25f9f487419d1f6583407c 100644
--- a/media/cast/test/simulator.cc
+++ b/media/cast/test/simulator.cc
@@ -65,7 +65,7 @@ using media::cast::proto::NetworkSimulationModelType;
namespace media {
namespace cast {
namespace {
-const int kTargetDelay = 300;
+const int kTargetDelay = 400;
const char kSourcePath[] = "source";
const char kModelPath[] = "model";
const char kOutputPath[] = "output";
@@ -230,9 +230,9 @@ void RunSimulation(const base::FilePath& source_path,
// Video sender config.
VideoSenderConfig video_sender_config = GetDefaultVideoSenderConfig();
- video_sender_config.max_bitrate = 4000000;
+ video_sender_config.max_bitrate = 2500000;
video_sender_config.min_bitrate = 2000000;
- video_sender_config.start_bitrate = 4000000;
+ video_sender_config.start_bitrate = 2000000;
video_sender_config.target_playout_delay =
base::TimeDelta::FromMilliseconds(kTargetDelay);
« 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