| 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 | 4 |
| 5 // This file contains the interface to the cast RTP sender. | 5 // This file contains the interface to the cast RTP sender. |
| 6 | 6 |
| 7 #ifndef MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ | 7 #ifndef MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ |
| 8 #define MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ | 8 #define MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 | 12 |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/time/tick_clock.h" | 14 #include "base/time/tick_clock.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "base/memory/weak_ptr.h" |
| 16 #include "media/cast/cast_config.h" | 17 #include "media/cast/cast_config.h" |
| 17 #include "media/cast/cast_environment.h" | 18 #include "media/cast/cast_environment.h" |
| 18 #include "media/cast/transport/cast_transport_defines.h" | 19 #include "media/cast/transport/cast_transport_defines.h" |
| 19 #include "media/cast/transport/cast_transport_sender.h" | 20 #include "media/cast/transport/cast_transport_sender.h" |
| 20 #include "media/cast/transport/pacing/paced_sender.h" | 21 #include "media/cast/transport/pacing/paced_sender.h" |
| 21 #include "media/cast/transport/rtp_sender/packet_storage/packet_storage.h" | 22 #include "media/cast/transport/rtp_sender/packet_storage/packet_storage.h" |
| 22 #include "media/cast/transport/rtp_sender/rtp_packetizer/rtp_packetizer.h" | 23 #include "media/cast/transport/rtp_sender/rtp_packetizer/rtp_packetizer.h" |
| 23 | 24 |
| 24 namespace media { | 25 namespace media { |
| 25 namespace cast { | 26 namespace cast { |
| 26 namespace transport { | 27 namespace transport { |
| 27 | 28 |
| 28 // This object is only called from the main cast thread. | 29 // This object is only called from the main cast thread. |
| 29 // This class handles splitting encoded audio and video frames into packets and | 30 // This class handles splitting encoded audio and video frames into packets and |
| 30 // add an RTP header to each packet. The sent packets are stored until they are | 31 // add an RTP header to each packet. The sent packets are stored until they are |
| 31 // acknowledged by the remote peer or timed out. | 32 // acknowledged by the remote peer or timed out. |
| 32 class RtpSender { | 33 class RtpSender : public base::SupportsWeakPtr<RtpSender>{ |
| 33 public: | 34 public: |
| 34 RtpSender(base::TickClock* clock, | 35 RtpSender(base::TickClock* clock, |
| 35 const CastTransportConfig& config, | 36 const CastTransportConfig& config, |
| 36 bool is_audio, | 37 bool is_audio, |
| 37 const scoped_refptr<base::TaskRunner>& transport_task_runner, | 38 const scoped_refptr<base::TaskRunner>& transport_task_runner, |
| 38 PacedSender* const transport); | 39 PacedSender* const transport); |
| 39 | 40 |
| 40 ~RtpSender(); | 41 ~RtpSender(); |
| 41 | 42 |
| 42 // The video_frame objects ownership is handled by the main cast thread. | 43 // The video_frame objects ownership is handled by the main cast thread. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 67 scoped_refptr<base::TaskRunner> transport_task_runner_; | 68 scoped_refptr<base::TaskRunner> transport_task_runner_; |
| 68 | 69 |
| 69 DISALLOW_COPY_AND_ASSIGN(RtpSender); | 70 DISALLOW_COPY_AND_ASSIGN(RtpSender); |
| 70 }; | 71 }; |
| 71 | 72 |
| 72 } // namespace transport | 73 } // namespace transport |
| 73 } // namespace cast | 74 } // namespace cast |
| 74 } // namespace media | 75 } // namespace media |
| 75 | 76 |
| 76 #endif // MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ | 77 #endif // MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ |
| OLD | NEW |