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 | |
| 11 | #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
| 12 | #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
| 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 | |
kwiberg | 4485ffb | 2016-04-26 08:14:39 -0700 | [diff] [blame] | 21 | #include "webrtc/base/constructormagic.h" |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 22 | #include "webrtc/base/criticalsection.h" |
danilchap | 47a740b | 2015-12-15 00:30:07 -0800 | [diff] [blame] | 23 | #include "webrtc/base/random.h" |
pbos@webrtc.org | 38344ed | 2014-09-24 06:05:00 +0000 | [diff] [blame] | 24 | #include "webrtc/base/thread_annotations.h" |
pbos@webrtc.org | a048d7c | 2013-05-29 14:27:38 +0000 | [diff] [blame] | 25 | #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" |
| 26 | #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" |
Henrik Kjellander | ff761fb | 2015-11-04 08:31:52 +0100 | [diff] [blame] | 27 | #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" |
| 28 | #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
Erik Språng | bdc0b0d | 2015-06-22 15:21:24 +0200 | [diff] [blame] | 29 | #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
danilchap | 34ed2b9 | 2016-01-18 02:43:32 -0800 | [diff] [blame] | 30 | #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" |
pbos@webrtc.org | a048d7c | 2013-05-29 14:27:38 +0000 | [diff] [blame] | 31 | #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
pbos@webrtc.org | a048d7c | 2013-05-29 14:27:38 +0000 | [diff] [blame] | 32 | #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" |
pbos | 2d56668 | 2015-09-28 09:59:31 -0700 | [diff] [blame] | 33 | #include "webrtc/transport.h" |
pbos@webrtc.org | a048d7c | 2013-05-29 14:27:38 +0000 | [diff] [blame] | 34 | #include "webrtc/typedefs.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 35 | |
| 36 | namespace webrtc { |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 37 | |
wu@webrtc.org | 822fbd8 | 2013-08-15 23:38:54 +0000 | [diff] [blame] | 38 | class ModuleRtpRtcpImpl; |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 39 | class RTCPReceiver; |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 40 | class RtcEventLog; |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 41 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 42 | class NACKStringBuilder { |
| 43 | public: |
| 44 | NACKStringBuilder(); |
| 45 | ~NACKStringBuilder(); |
pbos@webrtc.org | f3e4cee | 2013-07-31 15:17:19 +0000 | [diff] [blame] | 46 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 47 | void PushNACK(uint16_t nack); |
| 48 | std::string GetResult(); |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 49 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 50 | private: |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 51 | std::ostringstream stream_; |
| 52 | int count_; |
| 53 | uint16_t prevNack_; |
| 54 | bool consecutive_; |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
asapersson@webrtc.org | 9ffd8fe | 2015-01-21 08:22:50 +0000 | [diff] [blame] | 57 | class RTCPSender { |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 58 | public: |
| 59 | struct FeedbackState { |
| 60 | FeedbackState(); |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 61 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 62 | uint8_t send_payload_type; |
| 63 | uint32_t frequency_hz; |
| 64 | uint32_t packets_sent; |
| 65 | size_t media_bytes_sent; |
| 66 | uint32_t send_bitrate; |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 67 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 68 | uint32_t last_rr_ntp_secs; |
| 69 | uint32_t last_rr_ntp_frac; |
| 70 | uint32_t remote_sr; |
pbos@webrtc.org | 59f20bb | 2013-09-09 16:02:19 +0000 | [diff] [blame] | 71 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 72 | bool has_last_xr_rr; |
| 73 | RtcpReceiveTimeInfo last_xr_rr; |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 74 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 75 | // Used when generating TMMBR. |
| 76 | ModuleRtpRtcpImpl* module; |
| 77 | }; |
Erik Språng | 61be2a4 | 2015-04-27 13:32:52 +0200 | [diff] [blame] | 78 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 79 | RTCPSender(bool audio, |
| 80 | Clock* clock, |
| 81 | ReceiveStatistics* receive_statistics, |
| 82 | RtcpPacketTypeCounterObserver* packet_type_counter_observer, |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 83 | RtcEventLog* event_log, |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 84 | Transport* outgoing_transport); |
| 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 | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 96 | void SetStartTimestamp(uint32_t start_timestamp); |
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 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 100 | void SetSSRC(uint32_t ssrc); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 101 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 102 | void SetRemoteSSRC(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 | int32_t SetCNAME(const char* cName); |
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 AddMixedCNAME(uint32_t SSRC, const char* c_name); |
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 RemoveMixedCNAME(uint32_t SSRC); |
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 | bool TimeToSendRTCPReport(bool sendKeyframeBeforeRTP = false) const; |
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 | int32_t SendRTCP(const FeedbackState& feedback_state, |
| 113 | RTCPPacketType packetType, |
| 114 | int32_t nackSize = 0, |
| 115 | const uint16_t* nackList = 0, |
| 116 | bool repeat = false, |
| 117 | uint64_t pictureID = 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, |
| 122 | const uint16_t* nackList = 0, |
| 123 | bool repeat = false, |
| 124 | uint64_t pictureID = 0); |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 125 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 126 | bool REMB() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 127 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 128 | void SetREMBStatus(bool enable); |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 129 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 130 | void SetREMBData(uint32_t bitrate, const std::vector<uint32_t>& ssrcs); |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 131 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 132 | bool TMMBR() const; |
mflodman@webrtc.org | 84dc3d1 | 2011-12-22 10:26:13 +0000 | [diff] [blame] | 133 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 134 | void SetTMMBRStatus(bool enable); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 135 | |
danilchap | 41befce | 2016-03-30 11:11:51 -0700 | [diff] [blame] | 136 | void SetMaxPayloadLength(size_t max_payload_length); |
| 137 | |
danilchap | 6eaa3a4 | 2016-05-09 10:59:50 -0700 | [diff] [blame^] | 138 | void SetTMMBN(const std::vector<rtcp::TmmbItem>* boundingSet); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 139 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 140 | int32_t SetApplicationSpecificData(uint8_t subType, |
| 141 | uint32_t name, |
| 142 | const uint8_t* data, |
| 143 | uint16_t length); |
| 144 | int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric); |
asapersson@webrtc.org | 5249cc8 | 2011-12-16 14:31:37 +0000 | [diff] [blame] | 145 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 146 | void SendRtcpXrReceiverReferenceTime(bool enable); |
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 | bool RtcpXrReceiverReferenceTime() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 149 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 150 | void SetCsrcs(const std::vector<uint32_t>& csrcs); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 151 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 152 | void SetTargetBitrate(unsigned int target_bitrate); |
| 153 | bool SendFeedbackPacket(const rtcp::TransportFeedback& packet); |
mflodman@webrtc.org | 117c119 | 2012-01-13 08:52:58 +0000 | [diff] [blame] | 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. |
| 159 | void PrepareReport(const std::set<RTCPPacketType>& packetTypes, |
| 160 | const FeedbackState& feedback_state) |
| 161 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 162 | |
danilchap | a72e734 | 2015-12-22 08:07:45 -0800 | [diff] [blame] | 163 | bool AddReportBlock(const FeedbackState& feedback_state, |
| 164 | uint32_t ssrc, |
| 165 | StreamStatistician* statistician) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 166 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 167 | |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 168 | std::unique_ptr<rtcp::RtcpPacket> BuildSR(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 169 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 170 | std::unique_ptr<rtcp::RtcpPacket> BuildRR(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 171 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 172 | std::unique_ptr<rtcp::RtcpPacket> BuildSDES(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 173 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 174 | std::unique_ptr<rtcp::RtcpPacket> BuildPLI(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 175 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 176 | std::unique_ptr<rtcp::RtcpPacket> BuildREMB(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 177 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 178 | std::unique_ptr<rtcp::RtcpPacket> BuildTMMBR(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 179 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 180 | std::unique_ptr<rtcp::RtcpPacket> BuildTMMBN(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 181 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 182 | std::unique_ptr<rtcp::RtcpPacket> BuildAPP(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 183 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 184 | std::unique_ptr<rtcp::RtcpPacket> BuildVoIPMetric(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 185 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 186 | std::unique_ptr<rtcp::RtcpPacket> BuildBYE(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 187 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 188 | std::unique_ptr<rtcp::RtcpPacket> BuildFIR(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 189 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 190 | std::unique_ptr<rtcp::RtcpPacket> BuildSLI(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 191 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 192 | std::unique_ptr<rtcp::RtcpPacket> BuildRPSI(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 193 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 194 | std::unique_ptr<rtcp::RtcpPacket> BuildNACK(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 195 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 196 | std::unique_ptr<rtcp::RtcpPacket> BuildReceiverReferenceTime( |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 197 | const RtcpContext& context) |
| 198 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 199 | std::unique_ptr<rtcp::RtcpPacket> BuildDlrr(const RtcpContext& context) |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 200 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 201 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 202 | private: |
| 203 | const bool audio_; |
| 204 | Clock* const clock_; |
danilchap | 47a740b | 2015-12-15 00:30:07 -0800 | [diff] [blame] | 205 | Random random_ GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 206 | RtcpMode method_ GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 207 | |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 208 | RtcEventLog* const event_log_; |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 209 | Transport* const transport_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 210 | |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 211 | rtc::CriticalSection critical_section_rtcp_sender_; |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 212 | bool using_nack_ GUARDED_BY(critical_section_rtcp_sender_); |
| 213 | bool sending_ GUARDED_BY(critical_section_rtcp_sender_); |
| 214 | bool remb_enabled_ GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 215 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 216 | int64_t next_time_to_send_rtcp_ GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 217 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 218 | uint32_t start_timestamp_ GUARDED_BY(critical_section_rtcp_sender_); |
| 219 | uint32_t last_rtp_timestamp_ GUARDED_BY(critical_section_rtcp_sender_); |
| 220 | int64_t last_frame_capture_time_ms_ GUARDED_BY(critical_section_rtcp_sender_); |
| 221 | uint32_t ssrc_ GUARDED_BY(critical_section_rtcp_sender_); |
| 222 | // SSRC that we receive on our RTP channel |
| 223 | uint32_t remote_ssrc_ GUARDED_BY(critical_section_rtcp_sender_); |
| 224 | std::string cname_ 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 | ReceiveStatistics* receive_statistics_ |
| 227 | GUARDED_BY(critical_section_rtcp_sender_); |
| 228 | std::map<uint32_t, rtcp::ReportBlock> report_blocks_ |
| 229 | GUARDED_BY(critical_section_rtcp_sender_); |
| 230 | std::map<uint32_t, std::string> csrc_cnames_ |
| 231 | GUARDED_BY(critical_section_rtcp_sender_); |
stefan@webrtc.org | 286fe0b | 2013-08-21 20:58:21 +0000 | [diff] [blame] | 232 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 233 | // send CSRCs |
| 234 | std::vector<uint32_t> csrcs_ GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 235 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 236 | // Full intra request |
| 237 | uint8_t sequence_number_fir_ GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 238 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 239 | // REMB |
| 240 | uint32_t remb_bitrate_ GUARDED_BY(critical_section_rtcp_sender_); |
| 241 | std::vector<uint32_t> remb_ssrcs_ GUARDED_BY(critical_section_rtcp_sender_); |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 242 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 243 | TMMBRHelp tmmbr_help_ GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 6eaa3a4 | 2016-05-09 10:59:50 -0700 | [diff] [blame^] | 244 | std::vector<rtcp::TmmbItem> tmmbn_to_send_ |
| 245 | GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 246 | uint32_t tmmbr_send_ GUARDED_BY(critical_section_rtcp_sender_); |
| 247 | uint32_t packet_oh_send_ GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 41befce | 2016-03-30 11:11:51 -0700 | [diff] [blame] | 248 | size_t max_payload_length_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 249 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 250 | // APP |
| 251 | uint8_t app_sub_type_ GUARDED_BY(critical_section_rtcp_sender_); |
| 252 | uint32_t app_name_ GUARDED_BY(critical_section_rtcp_sender_); |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 253 | std::unique_ptr<uint8_t[]> app_data_ |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 254 | GUARDED_BY(critical_section_rtcp_sender_); |
| 255 | uint16_t app_length_ GUARDED_BY(critical_section_rtcp_sender_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 256 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 257 | // True if sending of XR Receiver reference time report is enabled. |
| 258 | bool xr_send_receiver_reference_time_enabled_ |
| 259 | GUARDED_BY(critical_section_rtcp_sender_); |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 260 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 261 | // XR VoIP metric |
| 262 | RTCPVoIPMetric xr_voip_metric_ GUARDED_BY(critical_section_rtcp_sender_); |
edjee@google.com | 79b0289 | 2013-04-04 19:43:34 +0000 | [diff] [blame] | 263 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 264 | RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; |
| 265 | RtcpPacketTypeCounter packet_type_counter_ |
| 266 | GUARDED_BY(critical_section_rtcp_sender_); |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 +0000 | [diff] [blame] | 267 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 268 | RTCPUtility::NackStats nack_stats_ GUARDED_BY(critical_section_rtcp_sender_); |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 269 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 270 | void SetFlag(RTCPPacketType type, bool is_volatile) |
| 271 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
| 272 | void SetFlags(const std::set<RTCPPacketType>& types, bool is_volatile) |
| 273 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
| 274 | bool IsFlagPresent(RTCPPacketType type) const |
| 275 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
| 276 | bool ConsumeFlag(RTCPPacketType type, bool forced = false) |
| 277 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
| 278 | bool AllVolatileFlagsConsumed() const |
| 279 | EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_); |
| 280 | struct ReportFlag { |
| 281 | ReportFlag(RTCPPacketType type, bool is_volatile) |
| 282 | : type(type), is_volatile(is_volatile) {} |
| 283 | bool operator<(const ReportFlag& flag) const { return type < flag.type; } |
| 284 | bool operator==(const ReportFlag& flag) const { return type == flag.type; } |
| 285 | const RTCPPacketType type; |
| 286 | const bool is_volatile; |
| 287 | }; |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 288 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 289 | std::set<ReportFlag> report_flags_ GUARDED_BY(critical_section_rtcp_sender_); |
Erik Språng | 242e22b | 2015-05-11 10:17:43 +0200 | [diff] [blame] | 290 | |
danilchap | 56036ff | 2016-03-22 11:14:09 -0700 | [diff] [blame] | 291 | typedef std::unique_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 292 | const RtcpContext&); |
| 293 | std::map<RTCPPacketType, BuilderFunc> builders_; |
terelius | 429c345 | 2016-01-21 05:42:04 -0800 | [diff] [blame] | 294 | |
| 295 | RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 296 | }; |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 297 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 298 | |
danilchap | 162abd3 | 2015-12-10 02:39:40 -0800 | [diff] [blame] | 299 | #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |