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

Unified Diff: media/cast/cast_sender_impl.h

Issue 116623002: Cast: Adding support for GPU accelerated encode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed dependency on content Created 7 years 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_sender_impl.h
diff --git a/media/cast/cast_sender_impl.h b/media/cast/cast_sender_impl.h
index f160f7495e230cc34831c6507f1eba8976274a61..e08bd4eebf91219fef8e757b37d10a516fced26a 100644
--- a/media/cast/cast_sender_impl.h
+++ b/media/cast/cast_sender_impl.h
@@ -28,11 +28,12 @@ class VideoSender;
// together such as pacer, packet receiver, frame input, audio and video sender.
class CastSenderImpl : public CastSender {
public:
- CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment,
- const AudioSenderConfig& audio_config,
- const VideoSenderConfig& video_config,
- VideoEncoderController* const video_encoder_controller,
- PacketSender* const packet_sender);
+ CastSenderImpl(
+ scoped_refptr<CastEnvironment> cast_environment,
+ const AudioSenderConfig& audio_config,
+ const VideoSenderConfig& video_config,
+ const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories,
+ PacketSender* const packet_sender);
virtual ~CastSenderImpl();

Powered by Google App Engine
This is Rietveld 408576698