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

Unified Diff: media/cast/sender/video_sender.cc

Issue 442863005: Plumb frame rate configuration into Cast Streaming API. (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 | « media/cast/cast_config.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/video_sender.cc
diff --git a/media/cast/sender/video_sender.cc b/media/cast/sender/video_sender.cc
index 598e0d3a98906e7234d0fba149a165522df5caf0..18579f5f44788158cdc6b6d2e2ac647fd2bf525b 100644
--- a/media/cast/sender/video_sender.cc
+++ b/media/cast/sender/video_sender.cc
@@ -51,7 +51,10 @@ VideoSender::VideoSender(
max_unacked_frames_),
cast_initialization_status_(STATUS_VIDEO_UNINITIALIZED),
weak_factory_(this) {
- VLOG(1) << "max_unacked_frames " << max_unacked_frames_;
+ VLOG(1) << "max_unacked_frames is " << max_unacked_frames_
+ << " for target_playout_delay="
+ << target_playout_delay_.InMilliseconds() << " ms"
+ << " and max_frame_rate=" << video_config.max_frame_rate;
DCHECK_GT(max_unacked_frames_, 0);
if (video_config.use_external_encoder) {
« no previous file with comments | « media/cast/cast_config.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698