Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_sender.h

Issue 2007743003: Add sender controlled playout delay limits (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@cleanup_rtp_hdr_extensions
Patch Set: Addressed comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 size_t RtpHeaderExtensionTotalLength() const; 174 size_t RtpHeaderExtensionTotalLength() const;
174 175
175 uint16_t BuildRTPHeaderExtension(uint8_t* data_buffer, bool marker_bit) const; 176 uint16_t BuildRTPHeaderExtension(uint8_t* data_buffer, bool marker_bit) const;
176 177
177 uint8_t BuildTransmissionTimeOffsetExtension(uint8_t *data_buffer) const; 178 uint8_t BuildTransmissionTimeOffsetExtension(uint8_t *data_buffer) const;
178 uint8_t BuildAudioLevelExtension(uint8_t* data_buffer) const; 179 uint8_t BuildAudioLevelExtension(uint8_t* data_buffer) const;
179 uint8_t BuildAbsoluteSendTimeExtension(uint8_t* data_buffer) const; 180 uint8_t BuildAbsoluteSendTimeExtension(uint8_t* data_buffer) const;
180 uint8_t BuildVideoRotationExtension(uint8_t* data_buffer) const; 181 uint8_t BuildVideoRotationExtension(uint8_t* data_buffer) const;
181 uint8_t BuildTransportSequenceNumberExtension(uint8_t* data_buffer, 182 uint8_t BuildTransportSequenceNumberExtension(uint8_t* data_buffer,
182 uint16_t sequence_number) const; 183 uint16_t sequence_number) const;
184 uint8_t BuildPlayoutDelayExtension(uint8_t* data_buffer,
185 uint16_t min_playout_delay_ms,
186 uint16_t max_playout_delay_ms) const;
183 187
184 // Verifies that the specified extension is registered, and that it is 188 // Verifies that the specified extension is registered, and that it is
185 // present in rtp packet. If extension is not registered kNotRegistered is 189 // 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 190 // 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 191 // 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 192 // offset of the extension from the beginning of the rtp packet and kOk is
189 // returned. 193 // returned.
190 enum class ExtensionStatus { 194 enum class ExtensionStatus {
191 kNotRegistered, 195 kNotRegistered,
192 kOk, 196 kOk,
(...skipping 20 matching lines...) Expand all
213 217
214 bool TimeToSendPacket(uint16_t sequence_number, int64_t capture_time_ms, 218 bool TimeToSendPacket(uint16_t sequence_number, int64_t capture_time_ms,
215 bool retransmission); 219 bool retransmission);
216 size_t TimeToSendPadding(size_t bytes); 220 size_t TimeToSendPadding(size_t bytes);
217 221
218 // NACK. 222 // NACK.
219 int SelectiveRetransmissions() const; 223 int SelectiveRetransmissions() const;
220 int SetSelectiveRetransmissions(uint8_t settings); 224 int SetSelectiveRetransmissions(uint8_t settings);
221 void OnReceivedNACK(const std::list<uint16_t>& nack_sequence_numbers, 225 void OnReceivedNACK(const std::list<uint16_t>& nack_sequence_numbers,
222 int64_t avg_rtt); 226 int64_t avg_rtt);
227 void OnReceivedRtcpReceiverReport(const ReportBlockList& report_blocks);
danilchap 2016/05/25 19:08:48 probably better move this declaration out of group
Irfan 2016/05/26 05:51:47 done. the original grouping here was for rtcp feed
223 228
224 void SetStorePacketsStatus(bool enable, uint16_t number_to_store); 229 void SetStorePacketsStatus(bool enable, uint16_t number_to_store);
225 230
226 bool StorePackets() const; 231 bool StorePackets() const;
227 232
228 int32_t ReSendPacket(uint16_t packet_id, int64_t min_resend_time = 0); 233 int32_t ReSendPacket(uint16_t packet_id, int64_t min_resend_time = 0);
229 234
230 bool ProcessNACKBitRate(uint32_t now); 235 bool ProcessNACKBitRate(uint32_t now);
231 236
232 // RTX. 237 // RTX.
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 void UpdateAbsoluteSendTime(uint8_t* rtp_packet, 379 void UpdateAbsoluteSendTime(uint8_t* rtp_packet,
375 size_t rtp_packet_length, 380 size_t rtp_packet_length,
376 const RTPHeader& rtp_header, 381 const RTPHeader& rtp_header,
377 int64_t now_ms) const; 382 int64_t now_ms) const;
378 383
379 bool UpdateTransportSequenceNumber(uint16_t sequence_number, 384 bool UpdateTransportSequenceNumber(uint16_t sequence_number,
380 uint8_t* rtp_packet, 385 uint8_t* rtp_packet,
381 size_t rtp_packet_length, 386 size_t rtp_packet_length,
382 const RTPHeader& rtp_header) const; 387 const RTPHeader& rtp_header) const;
383 388
389 void UpdatePlayoutDelayLimits(uint8_t* rtp_packet,
390 size_t rtp_packet_length,
391 const RTPHeader& rtp_header,
392 uint16_t min_playout_delay,
393 uint16_t max_playout_delay) const;
394
384 bool AllocateTransportSequenceNumber(int* packet_id) const; 395 bool AllocateTransportSequenceNumber(int* packet_id) const;
385 396
386 void UpdateRtpStats(const uint8_t* buffer, 397 void UpdateRtpStats(const uint8_t* buffer,
387 size_t packet_length, 398 size_t packet_length,
388 const RTPHeader& header, 399 const RTPHeader& header,
389 bool is_rtx, 400 bool is_rtx,
390 bool is_retransmit); 401 bool is_retransmit);
391 bool IsFecPacket(const uint8_t* buffer, const RTPHeader& header) const; 402 bool IsFecPacket(const uint8_t* buffer, const RTPHeader& header) const;
392 403
393 class BitrateAggregator { 404 class BitrateAggregator {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 uint32_t absolute_send_time_; 463 uint32_t absolute_send_time_;
453 VideoRotation rotation_; 464 VideoRotation rotation_;
454 CVOMode cvo_mode_; 465 CVOMode cvo_mode_;
455 uint16_t transport_sequence_number_; 466 uint16_t transport_sequence_number_;
456 467
457 // NACK 468 // NACK
458 uint32_t nack_byte_count_times_[NACK_BYTECOUNT_SIZE]; 469 uint32_t nack_byte_count_times_[NACK_BYTECOUNT_SIZE];
459 size_t nack_byte_count_[NACK_BYTECOUNT_SIZE]; 470 size_t nack_byte_count_[NACK_BYTECOUNT_SIZE];
460 Bitrate nack_bitrate_; 471 Bitrate nack_bitrate_;
461 472
473 // Tracks the current request for playout delay limits from application
474 // and decides whether the current RTP frame should include the playout
475 // delay extension on header.
476 PlayoutDelayOracle playout_delay_oracle_;
danilchap 2016/05/25 19:08:49 GUARDED_BY(send_critsect_) ? (since it could be ac
Irfan 2016/05/26 05:51:47 I moved the protection into the class - keeps it e
477
462 RTPPacketHistory packet_history_; 478 RTPPacketHistory packet_history_;
463 479
464 // Statistics 480 // Statistics
465 rtc::CriticalSection statistics_crit_; 481 rtc::CriticalSection statistics_crit_;
466 SendDelayMap send_delays_ GUARDED_BY(statistics_crit_); 482 SendDelayMap send_delays_ GUARDED_BY(statistics_crit_);
467 FrameCounts frame_counts_ GUARDED_BY(statistics_crit_); 483 FrameCounts frame_counts_ GUARDED_BY(statistics_crit_);
468 StreamDataCounters rtp_stats_ GUARDED_BY(statistics_crit_); 484 StreamDataCounters rtp_stats_ GUARDED_BY(statistics_crit_);
469 StreamDataCounters rtx_rtp_stats_ GUARDED_BY(statistics_crit_); 485 StreamDataCounters rtx_rtp_stats_ GUARDED_BY(statistics_crit_);
470 StreamDataCountersCallback* rtp_stats_callback_ GUARDED_BY(statistics_crit_); 486 StreamDataCountersCallback* rtp_stats_callback_ GUARDED_BY(statistics_crit_);
471 FrameCountObserver* const frame_count_observer_; 487 FrameCountObserver* const frame_count_observer_;
(...skipping 28 matching lines...) Expand all
500 // that the target bitrate is still valid. 516 // that the target bitrate is still valid.
501 rtc::CriticalSection target_bitrate_critsect_; 517 rtc::CriticalSection target_bitrate_critsect_;
502 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_); 518 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_);
503 519
504 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); 520 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender);
505 }; 521 };
506 522
507 } // namespace webrtc 523 } // namespace webrtc
508 524
509 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ 525 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698