blob: 1bdd6d1db91cb0933d4e24c53f411c3919deac9d [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
pwestin@webrtc.orgf6bb77a2012-01-24 17:16:59 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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.org26f8d9c2012-01-19 15:53:09 +000014#include <map>
Erik Språng242e22b2015-05-11 10:17:43 +020015#include <set>
edjee@google.com79b02892013-04-04 19:43:34 +000016#include <sstream>
17#include <string>
pwestin@webrtc.org26f8d9c2012-01-19 15:53:09 +000018
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:55 +000019#include "webrtc/base/scoped_ptr.h"
pbos@webrtc.org38344ed2014-09-24 06:05:00 +000020#include "webrtc/base/thread_annotations.h"
pbos@webrtc.orga048d7c2013-05-29 14:27:38 +000021#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h"
22#include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h"
Henrik Kjellanderff761fb2015-11-04 08:31:52 +010023#include "webrtc/modules/rtp_rtcp/include/receive_statistics.h"
24#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
Erik Språngbdc0b0d2015-06-22 15:21:24 +020025#include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h"
pbos@webrtc.orga048d7c2013-05-29 14:27:38 +000026#include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h"
27#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
28#include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h"
pbos2d566682015-09-28 09:59:31 -070029#include "webrtc/transport.h"
pbos@webrtc.orga048d7c2013-05-29 14:27:38 +000030#include "webrtc/typedefs.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000031
32namespace webrtc {
pwestin@webrtc.org741da942011-09-20 13:52:04 +000033
wu@webrtc.org822fbd82013-08-15 23:38:54 +000034class ModuleRtpRtcpImpl;
pbos@webrtc.org59f20bb2013-09-09 16:02:19 +000035class RTCPReceiver;
pwestin@webrtc.org741da942011-09-20 13:52:04 +000036
asapersson@webrtc.org9ffd8fe2015-01-21 08:22:50 +000037class NACKStringBuilder {
38 public:
39 NACKStringBuilder();
40 ~NACKStringBuilder();
pbos@webrtc.orgf3e4cee2013-07-31 15:17:19 +000041
asapersson@webrtc.org9ffd8fe2015-01-21 08:22:50 +000042 void PushNACK(uint16_t nack);
43 std::string GetResult();
edjee@google.com79b02892013-04-04 19:43:34 +000044
asapersson@webrtc.org9ffd8fe2015-01-21 08:22:50 +000045 private:
Erik Språng242e22b2015-05-11 10:17:43 +020046 std::ostringstream stream_;
47 int count_;
48 uint16_t prevNack_;
49 bool consecutive_;
edjee@google.com79b02892013-04-04 19:43:34 +000050};
51
asapersson@webrtc.org9ffd8fe2015-01-21 08:22:50 +000052class RTCPSender {
niklase@google.com470e71d2011-07-07 08:21:25 +000053public:
pbos@webrtc.org59f20bb2013-09-09 16:02:19 +000054 struct FeedbackState {
pbos@webrtc.org59f20bb2013-09-09 16:02:19 +000055 FeedbackState();
56
57 uint8_t send_payload_type;
58 uint32_t frequency_hz;
pbos@webrtc.org2f4b14e2014-07-15 15:25:39 +000059 uint32_t packets_sent;
pkasting@chromium.org4591fbd2014-11-20 22:28:14 +000060 size_t media_bytes_sent;
pbos@webrtc.org59f20bb2013-09-09 16:02:19 +000061 uint32_t send_bitrate;
62
63 uint32_t last_rr_ntp_secs;
64 uint32_t last_rr_ntp_frac;
65 uint32_t remote_sr;
66
asapersson@webrtc.org8469f7b2013-10-02 13:15:34 +000067 bool has_last_xr_rr;
68 RtcpReceiveTimeInfo last_xr_rr;
69
pbos@webrtc.org59f20bb2013-09-09 16:02:19 +000070 // Used when generating TMMBR.
71 ModuleRtpRtcpImpl* module;
72 };
Erik Språng61be2a42015-04-27 13:32:52 +020073
Peter Boströmac547a62015-09-17 23:03:57 +020074 RTCPSender(bool audio,
pbos@webrtc.orgd16e8392014-12-19 13:49:55 +000075 Clock* clock,
pbos@webrtc.org1d0fa5d2015-02-19 12:47:00 +000076 ReceiveStatistics* receive_statistics,
sprang86fd9ed2015-09-29 04:45:43 -070077 RtcpPacketTypeCounterObserver* packet_type_counter_observer,
78 Transport* outgoing_transport);
Erik Språng61be2a42015-04-27 13:32:52 +020079 virtual ~RTCPSender();
niklase@google.com470e71d2011-07-07 08:21:25 +000080
pbosda903ea2015-10-02 02:36:56 -070081 RtcpMode Status() const;
82 void SetRTCPStatus(RtcpMode method);
niklase@google.com470e71d2011-07-07 08:21:25 +000083
Erik Språng61be2a42015-04-27 13:32:52 +020084 bool Sending() const;
85 int32_t SetSendingStatus(const FeedbackState& feedback_state,
86 bool enabled); // combine the functions
niklase@google.com470e71d2011-07-07 08:21:25 +000087
Erik Språng61be2a42015-04-27 13:32:52 +020088 int32_t SetNackStatus(bool enable);
niklase@google.com470e71d2011-07-07 08:21:25 +000089
Erik Språng61be2a42015-04-27 13:32:52 +020090 void SetStartTimestamp(uint32_t start_timestamp);
stefan@webrtc.org7c3523c2012-09-11 07:00:42 +000091
Erik Språng61be2a42015-04-27 13:32:52 +020092 void SetLastRtpTime(uint32_t rtp_timestamp, int64_t capture_time_ms);
stefan@webrtc.org7c3523c2012-09-11 07:00:42 +000093
Erik Språng61be2a42015-04-27 13:32:52 +020094 void SetSSRC(uint32_t ssrc);
niklase@google.com470e71d2011-07-07 08:21:25 +000095
Erik Språng61be2a42015-04-27 13:32:52 +020096 void SetRemoteSSRC(uint32_t ssrc);
niklase@google.com470e71d2011-07-07 08:21:25 +000097
Peter Boström9ba52f82015-06-01 14:12:28 +020098 int32_t SetCNAME(const char* cName);
niklase@google.com470e71d2011-07-07 08:21:25 +000099
Erik Språng0ea42d32015-06-25 14:46:16 +0200100 int32_t AddMixedCNAME(uint32_t SSRC, const char* c_name);
niklase@google.com470e71d2011-07-07 08:21:25 +0000101
Erik Språng61be2a42015-04-27 13:32:52 +0200102 int32_t RemoveMixedCNAME(uint32_t SSRC);
niklase@google.com470e71d2011-07-07 08:21:25 +0000103
Erik Språng61be2a42015-04-27 13:32:52 +0200104 int64_t SendTimeOfSendReport(uint32_t sendReport);
niklase@google.com470e71d2011-07-07 08:21:25 +0000105
Erik Språng61be2a42015-04-27 13:32:52 +0200106 bool SendTimeOfXrRrReport(uint32_t mid_ntp, int64_t* time_ms) const;
asapersson@webrtc.org8469f7b2013-10-02 13:15:34 +0000107
Erik Språng61be2a42015-04-27 13:32:52 +0200108 bool TimeToSendRTCPReport(bool sendKeyframeBeforeRTP = false) const;
niklase@google.com470e71d2011-07-07 08:21:25 +0000109
Erik Språng61be2a42015-04-27 13:32:52 +0200110 int32_t SendRTCP(const FeedbackState& feedback_state,
Erik Språng242e22b2015-05-11 10:17:43 +0200111 RTCPPacketType packetType,
Erik Språng61be2a42015-04-27 13:32:52 +0200112 int32_t nackSize = 0,
113 const uint16_t* nackList = 0,
114 bool repeat = false,
115 uint64_t pictureID = 0);
niklase@google.com470e71d2011-07-07 08:21:25 +0000116
Erik Språng242e22b2015-05-11 10:17:43 +0200117 int32_t SendCompoundRTCP(const FeedbackState& feedback_state,
118 const std::set<RTCPPacketType>& packetTypes,
119 int32_t nackSize = 0,
120 const uint16_t* nackList = 0,
121 bool repeat = false,
122 uint64_t pictureID = 0);
123
Erik Språng61be2a42015-04-27 13:32:52 +0200124 bool REMB() const;
niklase@google.com470e71d2011-07-07 08:21:25 +0000125
Erik Språng61be2a42015-04-27 13:32:52 +0200126 void SetREMBStatus(bool enable);
pwestin@webrtc.org741da942011-09-20 13:52:04 +0000127
Erik Språng61be2a42015-04-27 13:32:52 +0200128 void SetREMBData(uint32_t bitrate, const std::vector<uint32_t>& ssrcs);
pwestin@webrtc.org741da942011-09-20 13:52:04 +0000129
Erik Språng61be2a42015-04-27 13:32:52 +0200130 bool TMMBR() const;
mflodman@webrtc.org84dc3d12011-12-22 10:26:13 +0000131
Erik Språng61be2a42015-04-27 13:32:52 +0200132 void SetTMMBRStatus(bool enable);
niklase@google.com470e71d2011-07-07 08:21:25 +0000133
Erik Språng61be2a42015-04-27 13:32:52 +0200134 int32_t SetTMMBN(const TMMBRSet* boundingSet, uint32_t maxBitrateKbit);
niklase@google.com470e71d2011-07-07 08:21:25 +0000135
Erik Språng61be2a42015-04-27 13:32:52 +0200136 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.org5249cc82011-12-16 14:31:37 +0000141
Erik Språng61be2a42015-04-27 13:32:52 +0200142 void SendRtcpXrReceiverReferenceTime(bool enable);
niklase@google.com470e71d2011-07-07 08:21:25 +0000143
Erik Språng61be2a42015-04-27 13:32:52 +0200144 bool RtcpXrReceiverReferenceTime() const;
niklase@google.com470e71d2011-07-07 08:21:25 +0000145
Erik Språng61be2a42015-04-27 13:32:52 +0200146 void SetCsrcs(const std::vector<uint32_t>& csrcs);
niklase@google.com470e71d2011-07-07 08:21:25 +0000147
Erik Språng61be2a42015-04-27 13:32:52 +0200148 void SetTargetBitrate(unsigned int target_bitrate);
sprang233bd872015-09-08 13:25:16 -0700149 bool SendFeedbackPacket(const rtcp::TransportFeedback& packet);
mflodman@webrtc.org117c1192012-01-13 08:52:58 +0000150
niklase@google.com470e71d2011-07-07 08:21:25 +0000151private:
Erik Språng242e22b2015-05-11 10:17:43 +0200152 struct RtcpContext;
153
154 // The BuildResult indicates the outcome of a call to a builder method,
155 // constructing a part of an RTCP packet:
156 //
157 // kError
158 // Building RTCP packet failed, propagate error out to caller.
159 // kAbort
160 // The (partial) block being build should not be included. Reset current
161 // buffer position to the state before the method call and proceed to the
162 // next packet type.
163 // kTruncated
164 // There is not enough room in the buffer to fit the data being constructed.
165 // (IP packet is full). Proceed to the next packet type, and call this
166 // method again when a new buffer has been allocated.
167 // TODO(sprang): Actually allocate multiple packets if needed.
168 // kSuccess
169 // Data has been successfully placed in the buffer.
170
171 enum class BuildResult { kError, kAborted, kTruncated, kSuccess };
172
pbos@webrtc.orgd16e8392014-12-19 13:49:55 +0000173 int32_t SendToNetwork(const uint8_t* dataBuffer, size_t length);
niklase@google.com470e71d2011-07-07 08:21:25 +0000174
Erik Språngbdc0b0d2015-06-22 15:21:24 +0200175 int32_t AddReportBlock(const RTCPReportBlock& report_block)
Erik Språng242e22b2015-05-11 10:17:43 +0200176 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000177
Erik Språng61be2a42015-04-27 13:32:52 +0200178 bool PrepareReport(const FeedbackState& feedback_state,
Erik Språngbdc0b0d2015-06-22 15:21:24 +0200179 uint32_t ssrc,
Erik Språng61be2a42015-04-27 13:32:52 +0200180 StreamStatistician* statistician,
Erik Språngbdc0b0d2015-06-22 15:21:24 +0200181 RTCPReportBlock* report_block);
stefan@webrtc.org286fe0b2013-08-21 20:58:21 +0000182
Erik Språng61be2a42015-04-27 13:32:52 +0200183 int PrepareRTCP(const FeedbackState& feedback_state,
Erik Språng242e22b2015-05-11 10:17:43 +0200184 const std::set<RTCPPacketType>& packetTypes,
Erik Språng61be2a42015-04-27 13:32:52 +0200185 int32_t nackSize,
186 const uint16_t* nackList,
187 bool repeat,
188 uint64_t pictureID,
189 uint8_t* rtcp_buffer,
190 int buffer_size);
stefan@webrtc.org286fe0b2013-08-21 20:58:21 +0000191
Erik Språng242e22b2015-05-11 10:17:43 +0200192 BuildResult BuildSR(RtcpContext* context)
193 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
194 BuildResult BuildRR(RtcpContext* context)
195 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
Erik Språng0ea42d32015-06-25 14:46:16 +0200196 BuildResult BuildSDES(RtcpContext* context)
Erik Språng242e22b2015-05-11 10:17:43 +0200197 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
198 BuildResult BuildPLI(RtcpContext* context)
199 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
200 BuildResult BuildREMB(RtcpContext* context)
201 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
202 BuildResult BuildTMMBR(RtcpContext* context)
203 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
204 BuildResult BuildTMMBN(RtcpContext* context)
205 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
206 BuildResult BuildAPP(RtcpContext* context)
207 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
208 BuildResult BuildVoIPMetric(RtcpContext* context)
209 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
210 BuildResult BuildBYE(RtcpContext* context)
211 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
212 BuildResult BuildFIR(RtcpContext* context)
213 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
214 BuildResult BuildSLI(RtcpContext* context)
215 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
216 BuildResult BuildRPSI(RtcpContext* context)
217 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
218 BuildResult BuildNACK(RtcpContext* context)
219 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
220 BuildResult BuildReceiverReferenceTime(RtcpContext* context)
221 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
222 BuildResult BuildDlrr(RtcpContext* context)
223 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
asapersson@webrtc.org8469f7b2013-10-02 13:15:34 +0000224
niklase@google.com470e71d2011-07-07 08:21:25 +0000225private:
Erik Språng242e22b2015-05-11 10:17:43 +0200226 const bool audio_;
227 Clock* const clock_;
pbosda903ea2015-10-02 02:36:56 -0700228 RtcpMode method_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000229
sprang86fd9ed2015-09-29 04:45:43 -0700230 Transport* const transport_;
niklase@google.com470e71d2011-07-07 08:21:25 +0000231
Erik Språng242e22b2015-05-11 10:17:43 +0200232 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtcp_sender_;
233 bool using_nack_ GUARDED_BY(critical_section_rtcp_sender_);
234 bool sending_ GUARDED_BY(critical_section_rtcp_sender_);
235 bool remb_enabled_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000236
Erik Språng242e22b2015-05-11 10:17:43 +0200237 int64_t next_time_to_send_rtcp_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000238
Erik Språng242e22b2015-05-11 10:17:43 +0200239 uint32_t start_timestamp_ GUARDED_BY(critical_section_rtcp_sender_);
240 uint32_t last_rtp_timestamp_ GUARDED_BY(critical_section_rtcp_sender_);
241 int64_t last_frame_capture_time_ms_ GUARDED_BY(critical_section_rtcp_sender_);
242 uint32_t ssrc_ GUARDED_BY(critical_section_rtcp_sender_);
Erik Språng61be2a42015-04-27 13:32:52 +0200243 // SSRC that we receive on our RTP channel
Erik Språng242e22b2015-05-11 10:17:43 +0200244 uint32_t remote_ssrc_ GUARDED_BY(critical_section_rtcp_sender_);
Erik Språng0ea42d32015-06-25 14:46:16 +0200245 std::string cname_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000246
Erik Språng242e22b2015-05-11 10:17:43 +0200247 ReceiveStatistics* receive_statistics_
248 GUARDED_BY(critical_section_rtcp_sender_);
Erik Språngbdc0b0d2015-06-22 15:21:24 +0200249 std::map<uint32_t, rtcp::ReportBlock> report_blocks_
Erik Språng242e22b2015-05-11 10:17:43 +0200250 GUARDED_BY(critical_section_rtcp_sender_);
Erik Språng0ea42d32015-06-25 14:46:16 +0200251 std::map<uint32_t, std::string> csrc_cnames_
Erik Språng242e22b2015-05-11 10:17:43 +0200252 GUARDED_BY(critical_section_rtcp_sender_);
stefan@webrtc.org286fe0b2013-08-21 20:58:21 +0000253
Erik Språng61be2a42015-04-27 13:32:52 +0200254 // Sent
Erik Språng242e22b2015-05-11 10:17:43 +0200255 uint32_t last_send_report_[RTCP_NUMBER_OF_SR] GUARDED_BY(
256 critical_section_rtcp_sender_); // allow packet loss and RTT above 1 sec
257 int64_t last_rtcp_time_[RTCP_NUMBER_OF_SR] GUARDED_BY(
258 critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000259
Erik Språng61be2a42015-04-27 13:32:52 +0200260 // Sent XR receiver reference time report.
261 // <mid ntp (mid 32 bits of the 64 bits NTP timestamp), send time in ms>.
Erik Språng242e22b2015-05-11 10:17:43 +0200262 std::map<uint32_t, int64_t> last_xr_rr_
263 GUARDED_BY(critical_section_rtcp_sender_);
asapersson@webrtc.org8469f7b2013-10-02 13:15:34 +0000264
Erik Språng61be2a42015-04-27 13:32:52 +0200265 // send CSRCs
Erik Språng242e22b2015-05-11 10:17:43 +0200266 std::vector<uint32_t> csrcs_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000267
Erik Språng61be2a42015-04-27 13:32:52 +0200268 // Full intra request
Erik Språng242e22b2015-05-11 10:17:43 +0200269 uint8_t sequence_number_fir_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000270
Erik Språng61be2a42015-04-27 13:32:52 +0200271 // REMB
Erik Språng242e22b2015-05-11 10:17:43 +0200272 uint32_t remb_bitrate_ GUARDED_BY(critical_section_rtcp_sender_);
273 std::vector<uint32_t> remb_ssrcs_ GUARDED_BY(critical_section_rtcp_sender_);
pwestin@webrtc.org741da942011-09-20 13:52:04 +0000274
Erik Språng242e22b2015-05-11 10:17:43 +0200275 TMMBRHelp tmmbr_help_ GUARDED_BY(critical_section_rtcp_sender_);
276 uint32_t tmmbr_send_ GUARDED_BY(critical_section_rtcp_sender_);
277 uint32_t packet_oh_send_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000278
Erik Språng61be2a42015-04-27 13:32:52 +0200279 // APP
Erik Språng242e22b2015-05-11 10:17:43 +0200280 uint8_t app_sub_type_ GUARDED_BY(critical_section_rtcp_sender_);
281 uint32_t app_name_ GUARDED_BY(critical_section_rtcp_sender_);
282 rtc::scoped_ptr<uint8_t[]> app_data_ GUARDED_BY(critical_section_rtcp_sender_);
283 uint16_t app_length_ GUARDED_BY(critical_section_rtcp_sender_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000284
Erik Språng61be2a42015-04-27 13:32:52 +0200285 // True if sending of XR Receiver reference time report is enabled.
Erik Språng242e22b2015-05-11 10:17:43 +0200286 bool xr_send_receiver_reference_time_enabled_
287 GUARDED_BY(critical_section_rtcp_sender_);
asapersson@webrtc.org8469f7b2013-10-02 13:15:34 +0000288
Erik Språng61be2a42015-04-27 13:32:52 +0200289 // XR VoIP metric
Erik Språng242e22b2015-05-11 10:17:43 +0200290 RTCPVoIPMetric xr_voip_metric_ GUARDED_BY(critical_section_rtcp_sender_);
edjee@google.com79b02892013-04-04 19:43:34 +0000291
Erik Språng61be2a42015-04-27 13:32:52 +0200292 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_;
293 RtcpPacketTypeCounter packet_type_counter_
Erik Språng242e22b2015-05-11 10:17:43 +0200294 GUARDED_BY(critical_section_rtcp_sender_);
asapersson@webrtc.org2dd31342014-10-29 12:42:30 +0000295
Erik Språng242e22b2015-05-11 10:17:43 +0200296 RTCPUtility::NackStats nack_stats_ GUARDED_BY(critical_section_rtcp_sender_);
297
298 void SetFlag(RTCPPacketType type, bool is_volatile)
299 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
300 void SetFlags(const std::set<RTCPPacketType>& types, bool is_volatile)
301 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
302 bool IsFlagPresent(RTCPPacketType type) const
303 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
304 bool ConsumeFlag(RTCPPacketType type, bool forced = false)
305 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
306 bool AllVolatileFlagsConsumed() const
307 EXCLUSIVE_LOCKS_REQUIRED(critical_section_rtcp_sender_);
308 struct ReportFlag {
309 ReportFlag(RTCPPacketType type, bool is_volatile)
310 : type(type), is_volatile(is_volatile) {}
311 bool operator<(const ReportFlag& flag) const { return type < flag.type; }
312 bool operator==(const ReportFlag& flag) const { return type == flag.type; }
313 const RTCPPacketType type;
314 const bool is_volatile;
315 };
316
317 std::set<ReportFlag> report_flags_ GUARDED_BY(critical_section_rtcp_sender_);
318
319 typedef BuildResult (RTCPSender::*Builder)(RtcpContext*);
320 std::map<RTCPPacketType, Builder> builders_;
Erik Språngbdc0b0d2015-06-22 15:21:24 +0200321
322 class PacketBuiltCallback;
niklase@google.com470e71d2011-07-07 08:21:25 +0000323};
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +0000324} // namespace webrtc
niklase@google.com470e71d2011-07-07 08:21:25 +0000325
326#endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_