niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
pwestin@webrtc.org | f6bb77a | 2012-01-24 17:16:59 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
| 12 | #define MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
pwestin@webrtc.org | 26f8d9c | 2012-01-19 15:53:09 +0000 | [diff] [blame] | 14 | #include <map> |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 15 | #include <memory> |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 16 | #include <set> |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 17 | #include <sstream> |
| 18 | #include <string> |
danilchap | b8b6fbb | 2015-12-10 05:05:27 -0800 | [diff] [blame] | 19 | #include <vector> |
pwestin@webrtc.org | 26f8d9c | 2012-01-19 15:53:09 +0000 | [diff] [blame] | 20 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 21 | #include "api/call/transport.h" |
| 22 | #include "api/optional.h" |
| 23 | #include "modules/remote_bitrate_estimator/include/bwe_defines.h" |
| 24 | #include "modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" |
| 25 | #include "modules/rtp_rtcp/include/receive_statistics.h" |
| 26 | #include "modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
| 27 | #include "modules/rtp_rtcp/source/rtcp_nack_stats.h" |
| 28 | #include "modules/rtp_rtcp/source/rtcp_packet.h" |
| 29 | #include "modules/rtp_rtcp/source/rtcp_packet/dlrr.h" |
| 30 | #include "modules/rtp_rtcp/source/rtcp_packet/report_block.h" |
| 31 | #include "modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" |
| 32 | #include "rtc_base/constructormagic.h" |
| 33 | #include "rtc_base/criticalsection.h" |
| 34 | #include "rtc_base/random.h" |
| 35 | #include "rtc_base/thread_annotations.h" |
Mirko Bonadei | 7120742 | 2017-09-15 13:58:09 +0200 | [diff] [blame] | 36 | #include "typedefs.h" // NOLINT(build/include) |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 37 | |
| 38 | namespace webrtc { |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 39 | |
wu@webrtc.org | 822fbd8 | 2013-08-15 23:38:54 +0000 | [diff] [blame] | 40 | class ModuleRtpRtcpImpl; |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 41 | class RtcEventLog; |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 42 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 43 | class NACKStringBuilder { |
| 44 | public: |
| 45 | NACKStringBuilder(); |
| 46 | ~NACKStringBuilder(); |
pbos@webrtc.org | f3e4cee | 2013-07-31 15:17:19 +0000 | [diff] [blame] | 47 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 48 | void PushNACK(uint16_t nack); |
| 49 | std::string GetResult(); |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 50 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 51 | private: |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 52 | std::ostringstream stream_; |
| 53 | int count_; |
| 54 | uint16_t prevNack_; |
| 55 | bool consecutive_; |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 58 | class RTCPSender { |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 59 | public: |
| 60 | struct FeedbackState { |
| 61 | FeedbackState(); |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 62 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 63 | uint32_t packets_sent; |
| 64 | size_t media_bytes_sent; |
| 65 | uint32_t send_bitrate; |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 66 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 67 | uint32_t last_rr_ntp_secs; |
| 68 | uint32_t last_rr_ntp_frac; |
| 69 | uint32_t remote_sr; |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 70 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 71 | bool has_last_xr_rr; |
danilchap | 798896a | 2016-09-28 02:54:25 -0700 | [diff] [blame] | 72 | rtcp::ReceiveTimeInfo last_xr_rr; |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 73 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 74 | // Used when generating TMMBR. |
| 75 | ModuleRtpRtcpImpl* module; |
| 76 | }; |
Erik Språng | 61be2a4 | 2015-04-27 13:32:52 +0200 | [diff] [blame] | 77 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 78 | RTCPSender(bool audio, |
| 79 | Clock* clock, |
danilchap | f5f793c | 2017-07-27 04:44:18 -0700 | [diff] [blame] | 80 | ReceiveStatisticsProvider* receive_statistics, |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 81 | RtcpPacketTypeCounterObserver* packet_type_counter_observer, |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 82 | RtcEventLog* event_log, |
Jiawei Ou | 3587b83 | 2018-01-31 22:08:26 -0800 | [diff] [blame] | 83 | Transport* outgoing_transport, |
| 84 | RtcpIntervalConfig interval_config); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 85 | virtual ~RTCPSender(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 86 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 87 | RtcpMode Status() const; |
| 88 | void SetRTCPStatus(RtcpMode method); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 89 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 90 | bool Sending() const; |
| 91 | int32_t SetSendingStatus(const FeedbackState& feedback_state, |
| 92 | bool enabled); // combine the functions |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 93 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 94 | int32_t SetNackStatus(bool enable); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 95 | |
danilchap | 71fead2 | 2016-08-18 02:01:49 -0700 | [diff] [blame] | 96 | void SetTimestampOffset(uint32_t timestamp_offset); |
stefan@webrtc.org | 7c3523c | 2012-09-11 07:00:42 +0000 | [diff] [blame] | 97 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 98 | void SetLastRtpTime(uint32_t rtp_timestamp, int64_t capture_time_ms); |
stefan@webrtc.org | 7c3523c | 2012-09-11 07:00:42 +0000 | [diff] [blame] | 99 | |
nisse | 14adba7 | 2017-03-20 03:52:39 -0700 | [diff] [blame] | 100 | uint32_t SSRC() const; |
| 101 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 102 | void SetSSRC(uint32_t ssrc); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 103 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 104 | void SetRemoteSSRC(uint32_t ssrc); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 105 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 106 | int32_t SetCNAME(const char* cName); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 107 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 108 | int32_t AddMixedCNAME(uint32_t SSRC, const char* c_name); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 109 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 110 | int32_t RemoveMixedCNAME(uint32_t SSRC); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 111 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 112 | bool TimeToSendRTCPReport(bool sendKeyframeBeforeRTP = false) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 113 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 114 | int32_t SendRTCP(const FeedbackState& feedback_state, |
| 115 | RTCPPacketType packetType, |
| 116 | int32_t nackSize = 0, |
nisse | cd386eb | 2017-03-14 08:54:43 -0700 | [diff] [blame] | 117 | const uint16_t* nackList = 0); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 118 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 119 | int32_t SendCompoundRTCP(const FeedbackState& feedback_state, |
| 120 | const std::set<RTCPPacketType>& packetTypes, |
| 121 | int32_t nackSize = 0, |
nisse | cd386eb | 2017-03-14 08:54:43 -0700 | [diff] [blame] | 122 | const uint16_t* nackList = 0); |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 123 | |
Danil Chapovalov | 1de4b62 | 2017-12-13 13:35:10 +0100 | [diff] [blame] | 124 | void SetRemb(int64_t bitrate_bps, std::vector<uint32_t> ssrcs); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 125 | |
Danil Chapovalov | f74d641 | 2017-10-18 13:32:57 +0200 | [diff] [blame] | 126 | void UnsetRemb(); |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 127 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 128 | bool TMMBR() const; |
mflodman@webrtc.org | 84dc3d1 | 2011-12-22 10:26:13 +0000 | [diff] [blame] | 129 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 130 | void SetTMMBRStatus(bool enable); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 131 | |
nisse | 284542b | 2017-01-10 08:58:32 -0800 | [diff] [blame] | 132 | void SetMaxRtpPacketSize(size_t max_packet_size); |
danilchap | 41befce | 2016-03-30 11:11:51 -0700 | [diff] [blame] | 133 | |
danilchap | 853ecb2 | 2016-08-22 08:26:15 -0700 | [diff] [blame] | 134 | void SetTmmbn(std::vector<rtcp::TmmbItem> bounding_set); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 135 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 136 | int32_t SetApplicationSpecificData(uint8_t subType, |
| 137 | uint32_t name, |
| 138 | const uint8_t* data, |
| 139 | uint16_t length); |
| 140 | int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric); |
asapersson@webrtc.org | 5249cc8 | 2011-12-16 14:31:37 +0000 | [diff] [blame] | 141 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 142 | void SendRtcpXrReceiverReferenceTime(bool enable); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 143 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 144 | bool RtcpXrReceiverReferenceTime() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 145 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 146 | void SetCsrcs(const std::vector<uint32_t>& csrcs); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 147 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 148 | void SetTargetBitrate(unsigned int target_bitrate); |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 149 | void SetVideoBitrateAllocation(const BitrateAllocation& bitrate); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 150 | bool SendFeedbackPacket(const rtcp::TransportFeedback& packet); |
mflodman@webrtc.org | 117c119 | 2012-01-13 08:52:58 +0000 | [diff] [blame] | 151 | |
Jiawei Ou | 3587b83 | 2018-01-31 22:08:26 -0800 | [diff] [blame] | 152 | int64_t RtcpAudioReportInverval() const; |
| 153 | int64_t RtcpVideoReportInverval() const; |
| 154 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 155 | private: |
| 156 | class RtcpContext; |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 157 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 158 | // Determine which RTCP messages should be sent and setup flags. |
Danil Chapovalov | 70ffead | 2016-07-20 15:26:59 +0200 | [diff] [blame] | 159 | void PrepareReport(const FeedbackState& feedback_state) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 160 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 161 | |
danilchap | 96b69bd | 2017-07-25 09:15:14 -0700 | [diff] [blame] | 162 | std::vector<rtcp::ReportBlock> CreateReportBlocks( |
| 163 | const FeedbackState& feedback_state) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 164 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 165 | |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 166 | std::unique_ptr<rtcp::RtcpPacket> BuildSR(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 167 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 168 | std::unique_ptr<rtcp::RtcpPacket> BuildRR(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 169 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 170 | std::unique_ptr<rtcp::RtcpPacket> BuildSDES(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 171 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 172 | std::unique_ptr<rtcp::RtcpPacket> BuildPLI(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 173 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 174 | std::unique_ptr<rtcp::RtcpPacket> BuildREMB(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 175 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 176 | std::unique_ptr<rtcp::RtcpPacket> BuildTMMBR(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 177 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 178 | std::unique_ptr<rtcp::RtcpPacket> BuildTMMBN(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 179 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 180 | std::unique_ptr<rtcp::RtcpPacket> BuildAPP(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 181 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 182 | std::unique_ptr<rtcp::RtcpPacket> BuildExtendedReports( |
| 183 | const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 184 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 185 | std::unique_ptr<rtcp::RtcpPacket> BuildBYE(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 186 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 187 | std::unique_ptr<rtcp::RtcpPacket> BuildFIR(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 188 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 189 | std::unique_ptr<rtcp::RtcpPacket> BuildNACK(const RtcpContext& context) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 190 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 191 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 192 | private: |
| 193 | const bool audio_; |
| 194 | Clock* const clock_; |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 195 | Random random_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 196 | RtcpMode method_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 197 | |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 198 | RtcEventLog* const event_log_; |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 199 | Transport* const transport_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 200 | |
Jiawei Ou | 3587b83 | 2018-01-31 22:08:26 -0800 | [diff] [blame] | 201 | const RtcpIntervalConfig interval_config_; |
| 202 | |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 203 | rtc::CriticalSection critical_section_rtcp_sender_; |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 204 | bool using_nack_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 205 | bool sending_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 206 | |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 207 | int64_t next_time_to_send_rtcp_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 208 | |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 209 | uint32_t timestamp_offset_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 210 | uint32_t last_rtp_timestamp_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 211 | int64_t last_frame_capture_time_ms_ |
| 212 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 213 | uint32_t ssrc_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 214 | // SSRC that we receive on our RTP channel |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 215 | uint32_t remote_ssrc_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 216 | std::string cname_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 217 | |
danilchap | f5f793c | 2017-07-27 04:44:18 -0700 | [diff] [blame] | 218 | ReceiveStatisticsProvider* receive_statistics_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 219 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 220 | std::map<uint32_t, std::string> csrc_cnames_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 221 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
stefan@webrtc.org | 286fe0b | 2013-08-21 20:58:21 +0000 | [diff] [blame] | 222 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 223 | // send CSRCs |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 224 | std::vector<uint32_t> csrcs_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 225 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 226 | // Full intra request |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 227 | uint8_t sequence_number_fir_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 228 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 229 | // REMB |
Danil Chapovalov | 1de4b62 | 2017-12-13 13:35:10 +0100 | [diff] [blame] | 230 | int64_t remb_bitrate_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 231 | std::vector<uint32_t> remb_ssrcs_ |
| 232 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 233 | |
danilchap | 6eaa3a4 | 2016-05-09 10:59:50 -0700 | [diff] [blame] | 234 | std::vector<rtcp::TmmbItem> tmmbn_to_send_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 235 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 236 | uint32_t tmmbr_send_bps_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 237 | uint32_t packet_oh_send_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 238 | size_t max_packet_size_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 239 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 240 | // APP |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 241 | uint8_t app_sub_type_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 242 | uint32_t app_name_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 243 | std::unique_ptr<uint8_t[]> app_data_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 244 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
| 245 | uint16_t app_length_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 246 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 247 | // True if sending of XR Receiver reference time report is enabled. |
| 248 | bool xr_send_receiver_reference_time_enabled_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 249 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 250 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 251 | // XR VoIP metric |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 252 | rtc::Optional<RTCPVoIPMetric> xr_voip_metric_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 253 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 254 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 255 | RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; |
| 256 | RtcpPacketTypeCounter packet_type_counter_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 257 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 +0000 | [diff] [blame] | 258 | |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 259 | RtcpNackStats nack_stats_ RTC_GUARDED_BY(critical_section_rtcp_sender_); |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 260 | |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 261 | rtc::Optional<BitrateAllocation> video_bitrate_allocation_ |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 262 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 263 | |
| 264 | void SetFlag(uint32_t type, bool is_volatile) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 265 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 266 | void SetFlags(const std::set<RTCPPacketType>& types, bool is_volatile) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 267 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 268 | bool IsFlagPresent(uint32_t type) const |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 269 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 270 | bool ConsumeFlag(uint32_t type, bool forced = false) |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 271 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 272 | bool AllVolatileFlagsConsumed() const |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 273 | RTC_EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 274 | struct ReportFlag { |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 275 | ReportFlag(uint32_t type, bool is_volatile) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 276 | : type(type), is_volatile(is_volatile) {} |
| 277 | bool operator<(const ReportFlag& flag) const { return type < flag.type; } |
| 278 | bool operator==(const ReportFlag& flag) const { return type == flag.type; } |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 279 | const uint32_t type; |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 280 | const bool is_volatile; |
| 281 | }; |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 282 | |
danilchap | 56359be | 2017-09-07 07:53:45 -0700 | [diff] [blame] | 283 | std::set<ReportFlag> report_flags_ |
| 284 | RTC_GUARDED_BY(critical_section_rtcp_sender_); |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 285 | |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 286 | typedef std::unique_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 287 | const RtcpContext&); |
sprang | 5e38c96 | 2016-12-01 05:18:09 -0800 | [diff] [blame] | 288 | // Map from RTCPPacketType to builder. |
| 289 | std::map<uint32_t, BuilderFunc> builders_; |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 290 | |
| 291 | RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 292 | }; |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 293 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 294 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 295 | #endif // MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |