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

Unified Diff: media/cast/cast_receiver_impl.cc

Issue 306783002: [Cast] Clean-up: Merge AudioReceiverConfig+VideoReceiverConfig-->FrameReceiverConfig. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed kFakeSoftwareAudio in AudioCodec enum, per hclam@. Created 6 years, 7 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_receiver_impl.h ('k') | media/cast/rtp_receiver/rtp_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/cast_receiver_impl.cc
diff --git a/media/cast/cast_receiver_impl.cc b/media/cast/cast_receiver_impl.cc
index f502a0f53ae57ba578c6cd6d578228cbf1bee2ac..661cbbe293ad600dba6775099cc37a3ff12d60cf 100644
--- a/media/cast/cast_receiver_impl.cc
+++ b/media/cast/cast_receiver_impl.cc
@@ -73,8 +73,8 @@ class LocalFrameReceiver : public FrameReceiver {
scoped_ptr<CastReceiver> CastReceiver::Create(
scoped_refptr<CastEnvironment> cast_environment,
- const AudioReceiverConfig& audio_config,
- const VideoReceiverConfig& video_config,
+ const FrameReceiverConfig& audio_config,
+ const FrameReceiverConfig& video_config,
transport::PacketSender* const packet_sender) {
return scoped_ptr<CastReceiver>(new CastReceiverImpl(
cast_environment, audio_config, video_config, packet_sender));
@@ -82,8 +82,8 @@ scoped_ptr<CastReceiver> CastReceiver::Create(
CastReceiverImpl::CastReceiverImpl(
scoped_refptr<CastEnvironment> cast_environment,
- const AudioReceiverConfig& audio_config,
- const VideoReceiverConfig& video_config,
+ const FrameReceiverConfig& audio_config,
+ const FrameReceiverConfig& video_config,
transport::PacketSender* const packet_sender)
: pacer_(cast_environment->Clock(),
cast_environment->Logging(),
« no previous file with comments | « media/cast/cast_receiver_impl.h ('k') | media/cast/rtp_receiver/rtp_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698