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

Unified Diff: media/cast/cast_receiver_impl.cc

Issue 192843002: Cast:Adding signaling and infrastructure for adjustable delay (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updates Created 6 years, 9 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: media/cast/cast_receiver_impl.cc
diff --git a/media/cast/cast_receiver_impl.cc b/media/cast/cast_receiver_impl.cc
index 4561fea5ff7b39db6d3e5eeefc3fd998c77c3700..ff5e067ee9ea621957790bb2f5f1125d2fbb812f 100644
--- a/media/cast/cast_receiver_impl.cc
+++ b/media/cast/cast_receiver_impl.cc
@@ -100,11 +100,15 @@ CastReceiverImpl::CastReceiverImpl(
packet_sender,
cast_environment->GetTaskRunner(CastEnvironment::TRANSPORT)),
audio_receiver_(cast_environment, audio_config, &pacer_),
- video_receiver_(cast_environment, video_config, &pacer_),
+ video_receiver_(cast_environment,
+ video_config,
+ &pacer_,
+ target_delay_cb_),
pwestin(chromium) 2014/03/11 22:07:55 send in your function here
mikhal1 2014/03/12 18:01:59 Done.
frame_receiver_(new LocalFrameReceiver(cast_environment,
&audio_receiver_,
&video_receiver_)),
cast_environment_(cast_environment),
+ target_delay_cb_(),
pwestin(chromium) 2014/03/11 22:07:55 remove this
mikhal1 2014/03/12 18:01:59 Done.
ssrc_of_audio_sender_(audio_config.incoming_ssrc),
ssrc_of_video_sender_(video_config.incoming_ssrc) {}

Powered by Google App Engine
This is Rietveld 408576698