| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 | 4 |
| 5 // This class maintains a send transport for audio and video in a Cast | 5 // This class maintains a send transport for audio and video in a Cast |
| 6 // Streaming session. | 6 // Streaming session. |
| 7 // Audio, video frames and RTCP messages are submitted to this object | 7 // Audio, video frames and RTCP messages are submitted to this object |
| 8 // and then packetized and paced to the underlying UDP socket. | 8 // and then packetized and paced to the underlying UDP socket. |
| 9 // | 9 // |
| 10 // The hierarchy of send transport in a Cast Streaming session: | 10 // The hierarchy of send transport in a Cast Streaming session: |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 base::TimeDelta logging_flush_interval, | 59 base::TimeDelta logging_flush_interval, |
| 60 scoped_ptr<Client> client, | 60 scoped_ptr<Client> client, |
| 61 scoped_ptr<PacketSender> transport, | 61 scoped_ptr<PacketSender> transport, |
| 62 const scoped_refptr<base::SingleThreadTaskRunner>& transport_task_runner); | 62 const scoped_refptr<base::SingleThreadTaskRunner>& transport_task_runner); |
| 63 | 63 |
| 64 ~CastTransportSenderImpl() final; | 64 ~CastTransportSenderImpl() final; |
| 65 | 65 |
| 66 // CastTransportSender implementation. | 66 // CastTransportSender implementation. |
| 67 void InitializeAudio(const CastTransportRtpConfig& config, | 67 void InitializeAudio(const CastTransportRtpConfig& config, |
| 68 const RtcpCastMessageCallback& cast_message_cb, | 68 const RtcpCastMessageCallback& cast_message_cb, |
| 69 const RtcpRttCallback& rtt_cb) final; | 69 const RtcpRttCallback& rtt_cb, |
| 70 const RtcpPliCallback& pli_cb) final; |
| 70 void InitializeVideo(const CastTransportRtpConfig& config, | 71 void InitializeVideo(const CastTransportRtpConfig& config, |
| 71 const RtcpCastMessageCallback& cast_message_cb, | 72 const RtcpCastMessageCallback& cast_message_cb, |
| 72 const RtcpRttCallback& rtt_cb) final; | 73 const RtcpRttCallback& rtt_cb, |
| 74 const RtcpPliCallback& pli_cb) final; |
| 73 void InsertFrame(uint32_t ssrc, const EncodedFrame& frame) final; | 75 void InsertFrame(uint32_t ssrc, const EncodedFrame& frame) final; |
| 74 | 76 |
| 75 void SendSenderReport(uint32_t ssrc, | 77 void SendSenderReport(uint32_t ssrc, |
| 76 base::TimeTicks current_time, | 78 base::TimeTicks current_time, |
| 77 RtpTimeTicks current_time_as_rtp_timestamp) final; | 79 RtpTimeTicks current_time_as_rtp_timestamp) final; |
| 78 | 80 |
| 79 void CancelSendingFrames(uint32_t ssrc, | 81 void CancelSendingFrames(uint32_t ssrc, |
| 80 const std::vector<uint32_t>& frame_ids) final; | 82 const std::vector<uint32_t>& frame_ids) final; |
| 81 | 83 |
| 82 void ResendFrameForKickstart(uint32_t ssrc, uint32_t frame_id) final; | 84 void ResendFrameForKickstart(uint32_t ssrc, uint32_t frame_id) final; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 188 |
| 187 base::WeakPtrFactory<CastTransportSenderImpl> weak_factory_; | 189 base::WeakPtrFactory<CastTransportSenderImpl> weak_factory_; |
| 188 | 190 |
| 189 DISALLOW_COPY_AND_ASSIGN(CastTransportSenderImpl); | 191 DISALLOW_COPY_AND_ASSIGN(CastTransportSenderImpl); |
| 190 }; | 192 }; |
| 191 | 193 |
| 192 } // namespace cast | 194 } // namespace cast |
| 193 } // namespace media | 195 } // namespace media |
| 194 | 196 |
| 195 #endif // MEDIA_CAST_NET_CAST_TRANSPORT_SENDER_IMPL_H_ | 197 #endif // MEDIA_CAST_NET_CAST_TRANSPORT_SENDER_IMPL_H_ |
| OLD | NEW |