| OLD | NEW |
| 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 <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "media/cast/cast_environment.h" | 11 #include "media/cast/cast_environment.h" |
| 12 #include "media/cast/cast_sender.h" | 12 #include "media/cast/cast_sender.h" |
| 13 #include "media/cast/sender/audio_sender.h" | 13 #include "media/cast/sender/audio_sender.h" |
| 14 #include "media/cast/sender/video_sender.h" | 14 #include "media/cast/sender/video_sender.h" |
| 15 | 15 |
| 16 namespace media { | 16 namespace media { |
| 17 class VideoFrame; | 17 class VideoFrame; |
| 18 | 18 |
| 19 namespace cast { | 19 namespace cast { |
| 20 class AudioSender; | 20 class AudioSender; |
| 21 class VideoSender; | 21 class VideoSender; |
| 22 | 22 |
| 23 // This class combines all required sending objects such as the audio and video | 23 // This class combines all required sending objects such as the audio and video |
| 24 // senders, pacer, packet receiver and frame input. | 24 // senders, pacer, packet receiver and frame input. |
| 25 class CastSenderImpl : public CastSender { | 25 class CastSenderImpl : public CastSender { |
| 26 public: | 26 public: |
| 27 CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment, | 27 CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment, |
| 28 CastTransport* const transport_sender); | 28 CastTransport* const transport_sender); |
| 29 | 29 |
| 30 void InitializeAudio(const AudioSenderConfig& audio_config, | 30 void InitializeAudio(const FrameSenderConfig& audio_config, |
| 31 const StatusChangeCallback& status_change_cb) final; | 31 const StatusChangeCallback& status_change_cb) final; |
| 32 void InitializeVideo( | 32 void InitializeVideo( |
| 33 const VideoSenderConfig& video_config, | 33 const FrameSenderConfig& video_config, |
| 34 const StatusChangeCallback& status_change_cb, | 34 const StatusChangeCallback& status_change_cb, |
| 35 const CreateVideoEncodeAcceleratorCallback& create_vea_cb, | 35 const CreateVideoEncodeAcceleratorCallback& create_vea_cb, |
| 36 const CreateVideoEncodeMemoryCallback& create_video_encode_mem_cb) | 36 const CreateVideoEncodeMemoryCallback& create_video_encode_mem_cb) final; |
| 37 final; | |
| 38 | 37 |
| 39 void SetTargetPlayoutDelay(base::TimeDelta new_target_playout_delay) final; | 38 void SetTargetPlayoutDelay(base::TimeDelta new_target_playout_delay) final; |
| 40 | 39 |
| 41 ~CastSenderImpl() final; | 40 ~CastSenderImpl() final; |
| 42 | 41 |
| 43 scoped_refptr<AudioFrameInput> audio_frame_input() final; | 42 scoped_refptr<AudioFrameInput> audio_frame_input() final; |
| 44 scoped_refptr<VideoFrameInput> video_frame_input() final; | 43 scoped_refptr<VideoFrameInput> video_frame_input() final; |
| 45 | 44 |
| 46 private: | 45 private: |
| 47 void ReceivedPacket(std::unique_ptr<Packet> packet); | 46 void ReceivedPacket(std::unique_ptr<Packet> packet); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 62 // NOTE: Weak pointers must be invalidated before all other member variables. | 61 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 63 base::WeakPtrFactory<CastSenderImpl> weak_factory_; | 62 base::WeakPtrFactory<CastSenderImpl> weak_factory_; |
| 64 | 63 |
| 65 DISALLOW_COPY_AND_ASSIGN(CastSenderImpl); | 64 DISALLOW_COPY_AND_ASSIGN(CastSenderImpl); |
| 66 }; | 65 }; |
| 67 | 66 |
| 68 } // namespace cast | 67 } // namespace cast |
| 69 } // namespace media | 68 } // namespace media |
| 70 | 69 |
| 71 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_ | 70 #endif // MEDIA_CAST_CAST_SENDER_IMPL_H_ |
| OLD | NEW |