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

Side by Side Diff: media/cast/cast_sender_impl.h

Issue 163553006: Cast: Refactoring Cast API's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactoring and responding to review Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #ifndef MEDIA_CAST_CAST_SENDER_IMPL_H_ 4 #ifndef MEDIA_CAST_CAST_SENDER_IMPL_H_
5 #define MEDIA_CAST_CAST_SENDER_IMPL_H_ 5 #define MEDIA_CAST_CAST_SENDER_IMPL_H_
6 6
7 #include "base/memory/ref_counted.h" 7 #include "base/memory/ref_counted.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "media/cast/audio_sender/audio_sender.h" 9 #include "media/cast/audio_sender/audio_sender.h"
10 #include "media/cast/cast_config.h" 10 #include "media/cast/cast_config.h"
11 #include "media/cast/cast_defines.h"
11 #include "media/cast/cast_environment.h" 12 #include "media/cast/cast_environment.h"
12 #include "media/cast/cast_sender.h" 13 #include "media/cast/cast_sender.h"
13 #include "media/cast/video_sender/video_sender.h" 14 #include "media/cast/video_sender/video_sender.h"
14 15
15 namespace media { 16 namespace media {
16 class VideoFrame; 17 class VideoFrame;
17 }
18 18
19 namespace media {
20 namespace cast { 19 namespace cast {
21
22 class AudioSender; 20 class AudioSender;
23 class VideoSender; 21 class VideoSender;
24 22
25 // This calls is a pure owner class that group all required sending objects 23 // This class combines all required sending objects such as the audio and video
26 // together such as pacer, packet receiver, frame input, audio and video sender. 24 // senders, pacer, packet receiver and frame input.
27 class CastSenderImpl : public CastSender { 25 class CastSenderImpl : public CastSender {
28 public: 26 public:
29 CastSenderImpl( 27 CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment,
30 scoped_refptr<CastEnvironment> cast_environment, 28 const CastInitializationCallback& cast_initialization_cb,
31 const AudioSenderConfig* audio_config, 29 transport::CastTransportSender* const transport_sender);
32 const VideoSenderConfig* video_config, 30
33 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories, 31 virtual void InitializeAudio(const AudioSenderConfig& audio_config) OVERRIDE;
34 const CastInitializationCallback& initialization_status, 32 virtual void InitializeVideo(
35 transport::CastTransportSender* const transport_sender); 33 const VideoSenderConfig& video_config,
34 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories)
35 OVERRIDE;
36 36
37 virtual ~CastSenderImpl(); 37 virtual ~CastSenderImpl();
38 38
39 virtual scoped_refptr<FrameInput> frame_input() OVERRIDE; 39 virtual scoped_refptr<AudioFrameInput> audio_frame_input() OVERRIDE;
40 virtual scoped_refptr<VideoFrameInput> video_frame_input() OVERRIDE;
41
40 virtual transport::PacketReceiverCallback packet_receiver() OVERRIDE; 42 virtual transport::PacketReceiverCallback packet_receiver() OVERRIDE;
41 43
42 private: 44 private:
43 void ReceivedPacket(scoped_ptr<Packet> packet); 45 void ReceivedPacket(scoped_ptr<Packet> packet);
44 // Used to trampoline the result back on the correct thread. And guaranteed 46 // Used to trampoline the result back on the correct thread. Guaranteed
45 // not to be called until the creation is complete. 47 // to be called only after creation is complete.
46 void InitializationResult(CastInitializationStatus status) const; 48 void InitializationResult(CastInitializationStatus status) const;
47 49
48 CastInitializationCallback initialization_callback_; 50 CastInitializationCallback initialization_callback_;
49 scoped_ptr<AudioSender> audio_sender_; 51 scoped_ptr<AudioSender> audio_sender_;
50 scoped_ptr<VideoSender> video_sender_; 52 scoped_ptr<VideoSender> video_sender_;
51 scoped_refptr<FrameInput> frame_input_; 53 scoped_refptr<AudioFrameInput> audio_frame_input_;
52 transport::PacketReceiverCallback packet_receiver_; 54 scoped_refptr<VideoFrameInput> video_frame_input_;
53 scoped_refptr<CastEnvironment> cast_environment_; 55 scoped_refptr<CastEnvironment> cast_environment_;
56 // The transport sender is owned by the owner of the CastSender, and should be
57 // valid throughout the lifetime of the CastSender.
58 transport::CastTransportSender* const transport_sender_;
54 uint32 ssrc_of_audio_sender_; 59 uint32 ssrc_of_audio_sender_;
55 uint32 ssrc_of_video_sender_; 60 uint32 ssrc_of_video_sender_;
56 base::WeakPtrFactory<CastSenderImpl> weak_factory_; 61 base::WeakPtrFactory<CastSenderImpl> weak_factory_;
57 62
58 DISALLOW_COPY_AND_ASSIGN(CastSenderImpl); 63 DISALLOW_COPY_AND_ASSIGN(CastSenderImpl);
59 }; 64 };
60 65
61 } // namespace cast 66 } // namespace cast
62 } // namespace media 67 } // namespace media
63 68
64 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_ 69 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698