OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
13 | 13 |
14 #include <list> | 14 #include <list> |
15 #include <map> | 15 #include <map> |
16 #include <memory> | 16 #include <memory> |
17 #include <utility> | 17 #include <utility> |
18 #include <vector> | 18 #include <vector> |
19 | 19 |
20 #include "webrtc/base/constructormagic.h" | 20 #include "webrtc/base/constructormagic.h" |
21 #include "webrtc/base/criticalsection.h" | 21 #include "webrtc/base/criticalsection.h" |
22 #include "webrtc/base/random.h" | 22 #include "webrtc/base/random.h" |
23 #include "webrtc/base/thread_annotations.h" | 23 #include "webrtc/base/thread_annotations.h" |
24 #include "webrtc/common_types.h" | 24 #include "webrtc/common_types.h" |
25 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 25 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
26 #include "webrtc/modules/rtp_rtcp/source/bitrate.h" | 26 #include "webrtc/modules/rtp_rtcp/source/bitrate.h" |
| 27 #include "webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h" |
27 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" | 28 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
28 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" | 29 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" |
29 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" | 30 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" |
30 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 31 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
31 #include "webrtc/modules/rtp_rtcp/source/ssrc_database.h" | 32 #include "webrtc/modules/rtp_rtcp/source/ssrc_database.h" |
32 #include "webrtc/transport.h" | 33 #include "webrtc/transport.h" |
33 | 34 |
34 namespace webrtc { | 35 namespace webrtc { |
35 | 36 |
36 class RTPSenderAudio; | 37 class RTPSenderAudio; |
37 class RTPSenderVideo; | 38 class RTPSenderVideo; |
38 class RtcEventLog; | 39 class RtcEventLog; |
39 | 40 |
40 class RTPSenderInterface { | 41 class RTPSenderInterface { |
41 public: | 42 public: |
42 RTPSenderInterface() {} | 43 RTPSenderInterface() {} |
43 virtual ~RTPSenderInterface() {} | 44 virtual ~RTPSenderInterface() {} |
44 | 45 |
45 enum CVOMode { | |
46 kCVONone, | |
47 kCVOInactive, // CVO rtp header extension is registered but haven't | |
48 // received any frame with rotation pending. | |
49 kCVOActivated, // CVO rtp header extension will be present in the rtp | |
50 // packets. | |
51 }; | |
52 | |
53 virtual uint32_t SSRC() const = 0; | 46 virtual uint32_t SSRC() const = 0; |
54 virtual uint32_t Timestamp() const = 0; | 47 virtual uint32_t Timestamp() const = 0; |
55 | 48 |
56 virtual int32_t BuildRTPheader(uint8_t* data_buffer, | 49 virtual int32_t BuildRTPheader(uint8_t* data_buffer, |
57 int8_t payload_type, | 50 int8_t payload_type, |
58 bool marker_bit, | 51 bool marker_bit, |
59 uint32_t capture_timestamp, | 52 uint32_t capture_timestamp, |
60 int64_t capture_time_ms, | 53 int64_t capture_time_ms, |
61 bool timestamp_provided = true, | 54 bool timestamp_provided = true, |
62 bool inc_sequence_number = true) = 0; | 55 bool inc_sequence_number = true) = 0; |
63 | 56 |
64 virtual size_t RTPHeaderLength() const = 0; | 57 // This returns the expected header length taking into consideration |
| 58 // the optional RTP header extensions that may not be currently active. |
| 59 virtual size_t RtpHeaderLength() const = 0; |
65 // Returns the next sequence number to use for a packet and allocates | 60 // Returns the next sequence number to use for a packet and allocates |
66 // 'packets_to_send' number of sequence numbers. It's important all allocated | 61 // 'packets_to_send' number of sequence numbers. It's important all allocated |
67 // sequence numbers are used in sequence to avoid perceived packet loss. | 62 // sequence numbers are used in sequence to avoid perceived packet loss. |
68 virtual uint16_t AllocateSequenceNumber(uint16_t packets_to_send) = 0; | 63 virtual uint16_t AllocateSequenceNumber(uint16_t packets_to_send) = 0; |
69 virtual uint16_t SequenceNumber() const = 0; | 64 virtual uint16_t SequenceNumber() const = 0; |
70 virtual size_t MaxPayloadLength() const = 0; | 65 virtual size_t MaxPayloadLength() const = 0; |
71 virtual size_t MaxDataPayloadLength() const = 0; | 66 virtual size_t MaxDataPayloadLength() const = 0; |
72 virtual uint16_t ActualSendBitrateKbit() const = 0; | 67 virtual uint16_t ActualSendBitrateKbit() const = 0; |
73 | 68 |
74 virtual int32_t SendToNetwork(uint8_t* data_buffer, | 69 virtual int32_t SendToNetwork(uint8_t* data_buffer, |
75 size_t payload_length, | 70 size_t payload_length, |
76 size_t rtp_header_length, | 71 size_t rtp_header_length, |
77 int64_t capture_time_ms, | 72 int64_t capture_time_ms, |
78 StorageType storage, | 73 StorageType storage, |
79 RtpPacketSender::Priority priority) = 0; | 74 RtpPacketSender::Priority priority) = 0; |
80 | 75 |
81 virtual bool UpdateVideoRotation(uint8_t* rtp_packet, | 76 virtual bool UpdateVideoRotation(uint8_t* rtp_packet, |
82 size_t rtp_packet_length, | 77 size_t rtp_packet_length, |
83 const RTPHeader& rtp_header, | 78 const RTPHeader& rtp_header, |
84 VideoRotation rotation) const = 0; | 79 VideoRotation rotation) const = 0; |
85 virtual bool IsRtpHeaderExtensionRegistered(RTPExtensionType type) = 0; | 80 virtual bool IsRtpHeaderExtensionRegistered(RTPExtensionType type) = 0; |
86 virtual CVOMode ActivateCVORtpHeaderExtension() = 0; | 81 virtual bool ActivateCVORtpHeaderExtension() = 0; |
87 }; | 82 }; |
88 | 83 |
89 class RTPSender : public RTPSenderInterface { | 84 class RTPSender : public RTPSenderInterface { |
90 public: | 85 public: |
91 RTPSender(bool audio, | 86 RTPSender(bool audio, |
92 Clock* clock, | 87 Clock* clock, |
93 Transport* transport, | 88 Transport* transport, |
94 RtpPacketSender* paced_sender, | 89 RtpPacketSender* paced_sender, |
95 TransportSequenceNumberAllocator* sequence_number_allocator, | 90 TransportSequenceNumberAllocator* sequence_number_allocator, |
96 TransportFeedbackObserver* transport_feedback_callback, | 91 TransportFeedbackObserver* transport_feedback_callback, |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 // RTP header extension | 158 // RTP header extension |
164 int32_t SetTransmissionTimeOffset(int32_t transmission_time_offset); | 159 int32_t SetTransmissionTimeOffset(int32_t transmission_time_offset); |
165 int32_t SetAbsoluteSendTime(uint32_t absolute_send_time); | 160 int32_t SetAbsoluteSendTime(uint32_t absolute_send_time); |
166 void SetVideoRotation(VideoRotation rotation); | 161 void SetVideoRotation(VideoRotation rotation); |
167 int32_t SetTransportSequenceNumber(uint16_t sequence_number); | 162 int32_t SetTransportSequenceNumber(uint16_t sequence_number); |
168 | 163 |
169 int32_t RegisterRtpHeaderExtension(RTPExtensionType type, uint8_t id); | 164 int32_t RegisterRtpHeaderExtension(RTPExtensionType type, uint8_t id); |
170 bool IsRtpHeaderExtensionRegistered(RTPExtensionType type) override; | 165 bool IsRtpHeaderExtensionRegistered(RTPExtensionType type) override; |
171 int32_t DeregisterRtpHeaderExtension(RTPExtensionType type); | 166 int32_t DeregisterRtpHeaderExtension(RTPExtensionType type); |
172 | 167 |
173 size_t RtpHeaderExtensionTotalLength() const; | 168 size_t RtpHeaderExtensionLength() const; |
174 | 169 |
175 uint16_t BuildRTPHeaderExtension(uint8_t* data_buffer, bool marker_bit) const; | 170 uint16_t BuildRTPHeaderExtension(uint8_t* data_buffer, bool marker_bit) const; |
176 | 171 |
177 uint8_t BuildTransmissionTimeOffsetExtension(uint8_t *data_buffer) const; | 172 uint8_t BuildTransmissionTimeOffsetExtension(uint8_t *data_buffer) const; |
178 uint8_t BuildAudioLevelExtension(uint8_t* data_buffer) const; | 173 uint8_t BuildAudioLevelExtension(uint8_t* data_buffer) const; |
179 uint8_t BuildAbsoluteSendTimeExtension(uint8_t* data_buffer) const; | 174 uint8_t BuildAbsoluteSendTimeExtension(uint8_t* data_buffer) const; |
180 uint8_t BuildVideoRotationExtension(uint8_t* data_buffer) const; | 175 uint8_t BuildVideoRotationExtension(uint8_t* data_buffer) const; |
181 uint8_t BuildTransportSequenceNumberExtension(uint8_t* data_buffer, | 176 uint8_t BuildTransportSequenceNumberExtension(uint8_t* data_buffer, |
182 uint16_t sequence_number) const; | 177 uint16_t sequence_number) const; |
| 178 uint8_t BuildPlayoutDelayExtension(uint8_t* data_buffer, |
| 179 uint16_t min_playout_delay_ms, |
| 180 uint16_t max_playout_delay_ms) const; |
183 | 181 |
184 // Verifies that the specified extension is registered, and that it is | 182 // Verifies that the specified extension is registered, and that it is |
185 // present in rtp packet. If extension is not registered kNotRegistered is | 183 // present in rtp packet. If extension is not registered kNotRegistered is |
186 // returned. If extension cannot be found in the rtp header, or if it is | 184 // returned. If extension cannot be found in the rtp header, or if it is |
187 // malformed, kError is returned. Otherwise *extension_offset is set to the | 185 // malformed, kError is returned. Otherwise *extension_offset is set to the |
188 // offset of the extension from the beginning of the rtp packet and kOk is | 186 // offset of the extension from the beginning of the rtp packet and kOk is |
189 // returned. | 187 // returned. |
190 enum class ExtensionStatus { | 188 enum class ExtensionStatus { |
191 kNotRegistered, | 189 kNotRegistered, |
192 kOk, | 190 kOk, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 int64_t avg_rtt); | 222 int64_t avg_rtt); |
225 | 223 |
226 void SetStorePacketsStatus(bool enable, uint16_t number_to_store); | 224 void SetStorePacketsStatus(bool enable, uint16_t number_to_store); |
227 | 225 |
228 bool StorePackets() const; | 226 bool StorePackets() const; |
229 | 227 |
230 int32_t ReSendPacket(uint16_t packet_id, int64_t min_resend_time = 0); | 228 int32_t ReSendPacket(uint16_t packet_id, int64_t min_resend_time = 0); |
231 | 229 |
232 bool ProcessNACKBitRate(uint32_t now); | 230 bool ProcessNACKBitRate(uint32_t now); |
233 | 231 |
| 232 // Feedback to decide when to stop sending playout delay. |
| 233 void OnReceivedRtcpReportBlocks(const ReportBlockList& report_blocks); |
| 234 |
234 // RTX. | 235 // RTX. |
235 void SetRtxStatus(int mode); | 236 void SetRtxStatus(int mode); |
236 int RtxStatus() const; | 237 int RtxStatus() const; |
237 | 238 |
238 uint32_t RtxSsrc() const; | 239 uint32_t RtxSsrc() const; |
239 void SetRtxSsrc(uint32_t ssrc); | 240 void SetRtxSsrc(uint32_t ssrc); |
240 | 241 |
241 void SetRtxPayloadType(int payload_type, int associated_payload_type); | 242 void SetRtxPayloadType(int payload_type, int associated_payload_type); |
242 | 243 |
243 // Functions wrapping RTPSenderInterface. | 244 // Functions wrapping RTPSenderInterface. |
244 int32_t BuildRTPheader(uint8_t* data_buffer, | 245 int32_t BuildRTPheader(uint8_t* data_buffer, |
245 int8_t payload_type, | 246 int8_t payload_type, |
246 bool marker_bit, | 247 bool marker_bit, |
247 uint32_t capture_timestamp, | 248 uint32_t capture_timestamp, |
248 int64_t capture_time_ms, | 249 int64_t capture_time_ms, |
249 const bool timestamp_provided = true, | 250 const bool timestamp_provided = true, |
250 const bool inc_sequence_number = true) override; | 251 const bool inc_sequence_number = true) override; |
251 | 252 |
252 size_t RTPHeaderLength() const override; | 253 size_t RtpHeaderLength() const override; |
253 uint16_t AllocateSequenceNumber(uint16_t packets_to_send) override; | 254 uint16_t AllocateSequenceNumber(uint16_t packets_to_send) override; |
254 size_t MaxPayloadLength() const override; | 255 size_t MaxPayloadLength() const override; |
255 | 256 |
256 // Current timestamp. | 257 // Current timestamp. |
257 uint32_t Timestamp() const override; | 258 uint32_t Timestamp() const override; |
258 uint32_t SSRC() const override; | 259 uint32_t SSRC() const override; |
259 | 260 |
260 int32_t SendToNetwork(uint8_t* data_buffer, | 261 int32_t SendToNetwork(uint8_t* data_buffer, |
261 size_t payload_length, | 262 size_t payload_length, |
262 size_t rtp_header_length, | 263 size_t rtp_header_length, |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 // Called on update of RTP statistics. | 314 // Called on update of RTP statistics. |
314 void RegisterRtpStatisticsCallback(StreamDataCountersCallback* callback); | 315 void RegisterRtpStatisticsCallback(StreamDataCountersCallback* callback); |
315 StreamDataCountersCallback* GetRtpStatisticsCallback() const; | 316 StreamDataCountersCallback* GetRtpStatisticsCallback() const; |
316 | 317 |
317 uint32_t BitrateSent() const; | 318 uint32_t BitrateSent() const; |
318 | 319 |
319 void SetRtpState(const RtpState& rtp_state); | 320 void SetRtpState(const RtpState& rtp_state); |
320 RtpState GetRtpState() const; | 321 RtpState GetRtpState() const; |
321 void SetRtxRtpState(const RtpState& rtp_state); | 322 void SetRtxRtpState(const RtpState& rtp_state); |
322 RtpState GetRtxRtpState() const; | 323 RtpState GetRtxRtpState() const; |
323 CVOMode ActivateCVORtpHeaderExtension() override; | 324 bool ActivateCVORtpHeaderExtension() override; |
324 | 325 |
325 protected: | 326 protected: |
326 int32_t CheckPayloadType(int8_t payload_type, RtpVideoCodecTypes* video_type); | 327 int32_t CheckPayloadType(int8_t payload_type, RtpVideoCodecTypes* video_type); |
327 | 328 |
328 private: | 329 private: |
329 // Maps capture time in milliseconds to send-side delay in milliseconds. | 330 // Maps capture time in milliseconds to send-side delay in milliseconds. |
330 // Send-side delay is the difference between transmission time and capture | 331 // Send-side delay is the difference between transmission time and capture |
331 // time. | 332 // time. |
332 typedef std::map<int64_t, int> SendDelayMap; | 333 typedef std::map<int64_t, int> SendDelayMap; |
333 | 334 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 void UpdateAbsoluteSendTime(uint8_t* rtp_packet, | 384 void UpdateAbsoluteSendTime(uint8_t* rtp_packet, |
384 size_t rtp_packet_length, | 385 size_t rtp_packet_length, |
385 const RTPHeader& rtp_header, | 386 const RTPHeader& rtp_header, |
386 int64_t now_ms) const; | 387 int64_t now_ms) const; |
387 | 388 |
388 bool UpdateTransportSequenceNumber(uint16_t sequence_number, | 389 bool UpdateTransportSequenceNumber(uint16_t sequence_number, |
389 uint8_t* rtp_packet, | 390 uint8_t* rtp_packet, |
390 size_t rtp_packet_length, | 391 size_t rtp_packet_length, |
391 const RTPHeader& rtp_header) const; | 392 const RTPHeader& rtp_header) const; |
392 | 393 |
| 394 void UpdatePlayoutDelayLimits(uint8_t* rtp_packet, |
| 395 size_t rtp_packet_length, |
| 396 const RTPHeader& rtp_header, |
| 397 uint16_t min_playout_delay, |
| 398 uint16_t max_playout_delay) const; |
| 399 |
393 bool AllocateTransportSequenceNumber(int* packet_id) const; | 400 bool AllocateTransportSequenceNumber(int* packet_id) const; |
394 | 401 |
395 void UpdateRtpStats(const uint8_t* buffer, | 402 void UpdateRtpStats(const uint8_t* buffer, |
396 size_t packet_length, | 403 size_t packet_length, |
397 const RTPHeader& header, | 404 const RTPHeader& header, |
398 bool is_rtx, | 405 bool is_rtx, |
399 bool is_retransmit); | 406 bool is_retransmit); |
400 bool IsFecPacket(const uint8_t* buffer, const RTPHeader& header) const; | 407 bool IsFecPacket(const uint8_t* buffer, const RTPHeader& header) const; |
401 | 408 |
402 class BitrateAggregator { | 409 class BitrateAggregator { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 460 |
454 size_t max_payload_length_; | 461 size_t max_payload_length_; |
455 | 462 |
456 int8_t payload_type_ GUARDED_BY(send_critsect_); | 463 int8_t payload_type_ GUARDED_BY(send_critsect_); |
457 std::map<int8_t, RtpUtility::Payload*> payload_type_map_; | 464 std::map<int8_t, RtpUtility::Payload*> payload_type_map_; |
458 | 465 |
459 RtpHeaderExtensionMap rtp_header_extension_map_; | 466 RtpHeaderExtensionMap rtp_header_extension_map_; |
460 int32_t transmission_time_offset_; | 467 int32_t transmission_time_offset_; |
461 uint32_t absolute_send_time_; | 468 uint32_t absolute_send_time_; |
462 VideoRotation rotation_; | 469 VideoRotation rotation_; |
463 CVOMode cvo_mode_; | 470 bool video_rotation_active_; |
464 uint16_t transport_sequence_number_; | 471 uint16_t transport_sequence_number_; |
465 | 472 |
466 // NACK | 473 // NACK |
467 uint32_t nack_byte_count_times_[NACK_BYTECOUNT_SIZE]; | 474 uint32_t nack_byte_count_times_[NACK_BYTECOUNT_SIZE]; |
468 size_t nack_byte_count_[NACK_BYTECOUNT_SIZE]; | 475 size_t nack_byte_count_[NACK_BYTECOUNT_SIZE]; |
469 Bitrate nack_bitrate_; | 476 Bitrate nack_bitrate_; |
470 | 477 |
| 478 // Tracks the current request for playout delay limits from application |
| 479 // and decides whether the current RTP frame should include the playout |
| 480 // delay extension on header. |
| 481 PlayoutDelayOracle playout_delay_oracle_; |
| 482 bool playout_delay_active_ GUARDED_BY(send_critsect_); |
| 483 |
471 RTPPacketHistory packet_history_; | 484 RTPPacketHistory packet_history_; |
472 | 485 |
473 // Statistics | 486 // Statistics |
474 rtc::CriticalSection statistics_crit_; | 487 rtc::CriticalSection statistics_crit_; |
475 SendDelayMap send_delays_ GUARDED_BY(statistics_crit_); | 488 SendDelayMap send_delays_ GUARDED_BY(statistics_crit_); |
476 FrameCounts frame_counts_ GUARDED_BY(statistics_crit_); | 489 FrameCounts frame_counts_ GUARDED_BY(statistics_crit_); |
477 StreamDataCounters rtp_stats_ GUARDED_BY(statistics_crit_); | 490 StreamDataCounters rtp_stats_ GUARDED_BY(statistics_crit_); |
478 StreamDataCounters rtx_rtp_stats_ GUARDED_BY(statistics_crit_); | 491 StreamDataCounters rtx_rtp_stats_ GUARDED_BY(statistics_crit_); |
479 StreamDataCountersCallback* rtp_stats_callback_ GUARDED_BY(statistics_crit_); | 492 StreamDataCountersCallback* rtp_stats_callback_ GUARDED_BY(statistics_crit_); |
480 FrameCountObserver* const frame_count_observer_; | 493 FrameCountObserver* const frame_count_observer_; |
(...skipping 28 matching lines...) Expand all Loading... |
509 // that the target bitrate is still valid. | 522 // that the target bitrate is still valid. |
510 rtc::CriticalSection target_bitrate_critsect_; | 523 rtc::CriticalSection target_bitrate_critsect_; |
511 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_); | 524 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_); |
512 | 525 |
513 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); | 526 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); |
514 }; | 527 }; |
515 | 528 |
516 } // namespace webrtc | 529 } // namespace webrtc |
517 | 530 |
518 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 531 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
OLD | NEW |