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> |
(...skipping 13 matching lines...) Expand all Loading... |
24 namespace transport { | 24 namespace transport { |
25 | 25 |
26 class PacedPacketSender; | 26 class PacedPacketSender; |
27 | 27 |
28 // This object is only called from the main cast thread. | 28 // This object is only called from the main cast thread. |
29 // This class handles splitting encoded audio and video frames into packets and | 29 // 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 | 30 // add an RTP header to each packet. The sent packets are stored until they are |
31 // acknowledged by the remote peer or timed out. | 31 // acknowledged by the remote peer or timed out. |
32 class RtpSender { | 32 class RtpSender { |
33 public: | 33 public: |
34 RtpSender(scoped_refptr<CastEnvironment> cast_environment, | 34 RtpSender(base::TickClock* clock, |
35 const AudioSenderConfig* audio_config, | 35 const AudioSenderConfig* audio_config, |
36 const VideoSenderConfig* video_config, | 36 const VideoSenderConfig* video_config, |
37 PacedPacketSender* transport); | 37 PacedPacketSender* transport); |
38 | 38 |
39 ~RtpSender(); | 39 ~RtpSender(); |
40 | 40 |
41 // The video_frame objects ownership is handled by the main cast thread. | 41 // The video_frame objects ownership is handled by the main cast thread. |
42 void IncomingEncodedVideoFrame(const EncodedVideoFrame* video_frame, | 42 void IncomingEncodedVideoFrame(const EncodedVideoFrame* video_frame, |
43 const base::TimeTicks& capture_time); | 43 const base::TimeTicks& capture_time); |
44 | 44 |
45 // The audio_frame objects ownership is handled by the main cast thread. | 45 // The audio_frame objects ownership is handled by the main cast thread. |
46 void IncomingEncodedAudioFrame(const EncodedAudioFrame* audio_frame, | 46 void IncomingEncodedAudioFrame(const EncodedAudioFrame* audio_frame, |
47 const base::TimeTicks& recorded_time); | 47 const base::TimeTicks& recorded_time); |
48 | 48 |
49 void ResendPackets(const MissingFramesAndPacketsMap& missing_packets); | 49 void ResendPackets(const MissingFramesAndPacketsMap& missing_packets); |
50 | 50 |
51 void RtpStatistics(const base::TimeTicks& now, RtcpSenderInfo* sender_info); | 51 void RtpStatistics(const base::TimeTicks& now, RtcpSenderInfo* sender_info); |
52 | 52 |
53 private: | 53 private: |
54 void UpdateSequenceNumber(std::vector<uint8>* packet); | 54 void UpdateSequenceNumber(std::vector<uint8>* packet); |
55 | 55 |
56 scoped_refptr<CastEnvironment> cast_environment_; | |
57 RtpPacketizerConfig config_; | 56 RtpPacketizerConfig config_; |
58 scoped_ptr<RtpPacketizer> packetizer_; | 57 scoped_ptr<RtpPacketizer> packetizer_; |
59 scoped_ptr<PacketStorage> storage_; | 58 scoped_ptr<PacketStorage> storage_; |
60 PacedPacketSender* transport_; | 59 PacedPacketSender* transport_; |
61 }; | 60 }; |
62 | 61 |
63 } // namespace transport | 62 } // namespace transport |
64 } // namespace cast | 63 } // namespace cast |
65 } // namespace media | 64 } // namespace media |
66 | 65 |
67 #endif // MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ | 66 #endif // MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_SENDER_H_ |
OLD | NEW |