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_RECEIVER_H_ |
| 12 | #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ |
| 13 | |
pwestin@webrtc.org | 26f8d9c | 2012-01-19 15:53:09 +0000 | [diff] [blame] | 14 | #include <map> |
stefan@webrtc.org | 28a331e | 2013-09-17 07:49:56 +0000 | [diff] [blame] | 15 | #include <set> |
danilchap | b8b6fbb | 2015-12-10 05:05:27 -0800 | [diff] [blame] | 16 | #include <vector> |
perkj@webrtc.org | ce5990c | 2012-01-11 13:00:08 +0000 | [diff] [blame] | 17 | |
danilchap | 7c9426c | 2016-04-14 03:05:31 -0700 | [diff] [blame] | 18 | #include "webrtc/base/criticalsection.h" |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 19 | #include "webrtc/base/thread_annotations.h" |
Henrik Kjellander | ff761fb | 2015-11-04 08:31:52 +0100 | [diff] [blame] | 20 | #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
pbos@webrtc.org | a048d7c | 2013-05-29 14:27:38 +0000 | [diff] [blame] | 21 | #include "webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h" |
| 22 | #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
pbos@webrtc.org | a048d7c | 2013-05-29 14:27:38 +0000 | [diff] [blame] | 23 | #include "webrtc/typedefs.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 24 | |
| 25 | namespace webrtc { |
danilchap | 59cb2bd | 2016-08-29 11:08:47 -0700 | [diff] [blame] | 26 | namespace rtcp { |
| 27 | class TmmbItem; |
| 28 | } // namespace rtcp |
pwestin@webrtc.org | 741da94 | 2011-09-20 13:52:04 +0000 | [diff] [blame] | 29 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 30 | class RTCPReceiver { |
| 31 | public: |
danilchap | 59cb2bd | 2016-08-29 11:08:47 -0700 | [diff] [blame] | 32 | class ModuleRtpRtcp { |
| 33 | public: |
| 34 | virtual void SetTmmbn(std::vector<rtcp::TmmbItem> bounding_set) = 0; |
| 35 | virtual void OnRequestSendReport() = 0; |
| 36 | virtual void OnReceivedNack( |
| 37 | const std::vector<uint16_t>& nack_sequence_numbers) = 0; |
| 38 | virtual void OnReceivedRtcpReportBlocks( |
| 39 | const ReportBlockList& report_blocks) = 0; |
| 40 | |
| 41 | protected: |
| 42 | virtual ~ModuleRtpRtcp() = default; |
| 43 | }; |
| 44 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 45 | RTCPReceiver(Clock* clock, |
| 46 | bool receiver_only, |
| 47 | RtcpPacketTypeCounterObserver* packet_type_counter_observer, |
| 48 | RtcpBandwidthObserver* rtcp_bandwidth_observer, |
| 49 | RtcpIntraFrameObserver* rtcp_intra_frame_observer, |
| 50 | TransportFeedbackObserver* transport_feedback_observer, |
danilchap | 59cb2bd | 2016-08-29 11:08:47 -0700 | [diff] [blame] | 51 | ModuleRtpRtcp* owner); |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 52 | virtual ~RTCPReceiver(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 53 | |
danilchap | 59cb2bd | 2016-08-29 11:08:47 -0700 | [diff] [blame] | 54 | bool IncomingPacket(const uint8_t* packet, size_t packet_size); |
| 55 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 56 | int64_t LastReceived(); |
| 57 | int64_t LastReceivedReceiverReport() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 58 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 59 | void SetSsrcs(uint32_t main_ssrc, const std::set<uint32_t>& registered_ssrcs); |
| 60 | void SetRemoteSSRC(uint32_t ssrc); |
| 61 | uint32_t RemoteSSRC() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 62 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 63 | // get received cname |
| 64 | int32_t CNAME(uint32_t remoteSSRC, char cName[RTCP_CNAME_SIZE]) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 65 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 66 | // get received NTP |
| 67 | bool NTP(uint32_t* ReceivedNTPsecs, |
| 68 | uint32_t* ReceivedNTPfrac, |
| 69 | uint32_t* RTCPArrivalTimeSecs, |
| 70 | uint32_t* RTCPArrivalTimeFrac, |
| 71 | uint32_t* rtcp_timestamp) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 72 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 73 | bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 74 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 75 | // get rtt |
| 76 | int32_t RTT(uint32_t remoteSSRC, |
| 77 | int64_t* RTT, |
| 78 | int64_t* avgRTT, |
| 79 | int64_t* minRTT, |
| 80 | int64_t* maxRTT) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 81 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 82 | int32_t SenderInfoReceived(RTCPSenderInfo* senderInfo) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 83 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 84 | void SetRtcpXrRrtrStatus(bool enable); |
| 85 | bool GetAndResetXrRrRtt(int64_t* rtt_ms); |
asapersson@webrtc.org | 7d6bd22 | 2013-10-31 12:14:34 +0000 | [diff] [blame] | 86 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 87 | // get statistics |
| 88 | int32_t StatisticsReceived(std::vector<RTCPReportBlock>* receiveBlocks) const; |
perkj@webrtc.org | ce5990c | 2012-01-11 13:00:08 +0000 | [diff] [blame] | 89 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 90 | // Returns true if we haven't received an RTCP RR for several RTCP |
| 91 | // intervals, but only triggers true once. |
| 92 | bool RtcpRrTimeout(int64_t rtcp_interval_ms); |
mflodman@webrtc.org | 2f225ca | 2013-01-09 13:54:43 +0000 | [diff] [blame] | 93 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 94 | // Returns true if we haven't received an RTCP RR telling the receive side |
| 95 | // has not received RTP packets for too long, i.e. extended highest sequence |
| 96 | // number hasn't increased for several RTCP intervals. The function only |
| 97 | // returns true once until a new RR is received. |
| 98 | bool RtcpRrSequenceNumberTimeout(int64_t rtcp_interval_ms); |
mflodman@webrtc.org | 2f225ca | 2013-01-09 13:54:43 +0000 | [diff] [blame] | 99 | |
danilchap | 853ecb2 | 2016-08-22 08:26:15 -0700 | [diff] [blame] | 100 | std::vector<rtcp::TmmbItem> TmmbrReceived() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 101 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 102 | bool UpdateRTCPReceiveInformationTimers(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 103 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 104 | std::vector<rtcp::TmmbItem> BoundingSet(bool* tmmbr_owner); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 105 | |
danilchap | 853ecb2 | 2016-08-22 08:26:15 -0700 | [diff] [blame] | 106 | void UpdateTmmbr(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 107 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 108 | void RegisterRtcpStatisticsCallback(RtcpStatisticsCallback* callback); |
| 109 | RtcpStatisticsCallback* GetRtcpStatisticsCallback(); |
sprang@webrtc.org | a6ad6e5 | 2013-12-05 09:48:44 +0000 | [diff] [blame] | 110 | |
danilchap | dd12892 | 2016-09-13 12:23:29 -0700 | [diff] [blame] | 111 | private: |
| 112 | using ReceivedInfoMap = std::map<uint32_t, RTCPHelp::RTCPReceiveInformation*>; |
| 113 | // RTCP report block information mapped by remote SSRC. |
| 114 | using ReportBlockInfoMap = |
| 115 | std::map<uint32_t, RTCPHelp::RTCPReportBlockInformation*>; |
| 116 | // RTCP report block information map mapped by source SSRC. |
| 117 | using ReportBlockMap = std::map<uint32_t, ReportBlockInfoMap>; |
| 118 | |
| 119 | int32_t IncomingRTCPPacket( |
| 120 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation, |
| 121 | RTCPUtility::RTCPParserV2* rtcpParser); |
| 122 | |
| 123 | void TriggerCallbacksFromRTCPPacket( |
| 124 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); |
| 125 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 126 | RTCPUtility::RTCPCnameInformation* CreateCnameInformation( |
| 127 | uint32_t remoteSSRC); |
| 128 | RTCPUtility::RTCPCnameInformation* GetCnameInformation( |
| 129 | uint32_t remoteSSRC) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 130 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 131 | RTCPHelp::RTCPReceiveInformation* CreateReceiveInformation( |
| 132 | uint32_t remoteSSRC); |
| 133 | RTCPHelp::RTCPReceiveInformation* GetReceiveInformation(uint32_t remoteSSRC); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 134 | |
Danil Chapovalov | 91511f1 | 2016-09-15 16:24:02 +0200 | [diff] [blame] | 135 | void HandleSenderReport( |
| 136 | RTCPUtility::RTCPParserV2& rtcpParser, |
| 137 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 138 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 139 | |
| 140 | void HandleReceiverReport( |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 141 | RTCPUtility::RTCPParserV2& rtcpParser, |
| 142 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 143 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 144 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 145 | void HandleReportBlock(const RTCPUtility::RTCPPacket& rtcpPacket, |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 146 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation, |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 147 | uint32_t remoteSSRC) |
| 148 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 149 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 150 | void HandleSDES(RTCPUtility::RTCPParserV2& rtcpParser, |
| 151 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 152 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 153 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 154 | void HandleXrHeader(RTCPUtility::RTCPParserV2& parser, |
sprang | 7dc39f3 | 2015-10-13 09:17:48 -0700 | [diff] [blame] | 155 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 156 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 157 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 158 | void HandleXrReceiveReferenceTime( |
| 159 | RTCPUtility::RTCPParserV2& parser, |
| 160 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 161 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 162 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 163 | void HandleXrDlrrReportBlock( |
| 164 | RTCPUtility::RTCPParserV2& parser, |
| 165 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 166 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 167 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 168 | void HandleNACK(RTCPUtility::RTCPParserV2& rtcpParser, |
| 169 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 170 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 171 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 172 | void HandleBYE(RTCPUtility::RTCPParserV2& rtcpParser) |
| 173 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 174 | |
| 175 | void HandlePLI(RTCPUtility::RTCPParserV2& rtcpParser, |
| 176 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 177 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 178 | |
| 179 | void HandleSLI(RTCPUtility::RTCPParserV2& rtcpParser, |
| 180 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 181 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 182 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 183 | void HandleRPSI(RTCPUtility::RTCPParserV2& rtcpParser, |
| 184 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 185 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 186 | |
| 187 | void HandlePsfbApp(RTCPUtility::RTCPParserV2& rtcpParser, |
| 188 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 189 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 190 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 191 | void HandleTMMBR(RTCPUtility::RTCPParserV2& rtcpParser, |
sprang | 7dc39f3 | 2015-10-13 09:17:48 -0700 | [diff] [blame] | 192 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 193 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 194 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 195 | void HandleTMMBN(RTCPUtility::RTCPParserV2& rtcpParser, |
sprang | 7dc39f3 | 2015-10-13 09:17:48 -0700 | [diff] [blame] | 196 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 197 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 198 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 199 | void HandleSR_REQ(RTCPUtility::RTCPParserV2& rtcpParser, |
| 200 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 201 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 202 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 203 | void HandleFIR(RTCPUtility::RTCPParserV2& rtcpParser, |
| 204 | RTCPHelp::RTCPPacketInformation& rtcpPacketInformation) |
| 205 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
| 206 | |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 207 | void HandleTransportFeedback( |
| 208 | RTCPUtility::RTCPParserV2* rtcp_parser, |
| 209 | RTCPHelp::RTCPPacketInformation* rtcp_packet_information) |
| 210 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
Erik Språng | 6b8d355 | 2015-09-24 15:06:57 +0200 | [diff] [blame] | 211 | |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 212 | RTCPHelp::RTCPReportBlockInformation* CreateOrGetReportBlockInformation( |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 213 | uint32_t remote_ssrc, |
| 214 | uint32_t source_ssrc) |
| 215 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 216 | RTCPHelp::RTCPReportBlockInformation* GetReportBlockInformation( |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 217 | uint32_t remote_ssrc, |
| 218 | uint32_t source_ssrc) const |
| 219 | EXCLUSIVE_LOCKS_REQUIRED(_criticalSectionRTCPReceiver); |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 220 | |
Peter Boström | fe7a80c | 2015-04-23 17:53:17 +0200 | [diff] [blame] | 221 | Clock* const _clock; |
| 222 | const bool receiver_only_; |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 223 | int64_t _lastReceived; |
danilchap | 59cb2bd | 2016-08-29 11:08:47 -0700 | [diff] [blame] | 224 | ModuleRtpRtcp& _rtpRtcp; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 225 | |
danilchap | 7c9426c | 2016-04-14 03:05:31 -0700 | [diff] [blame] | 226 | rtc::CriticalSection _criticalSectionFeedbacks; |
mflodman@webrtc.org | 96abda0 | 2015-02-25 13:50:10 +0000 | [diff] [blame] | 227 | RtcpBandwidthObserver* const _cbRtcpBandwidthObserver; |
| 228 | RtcpIntraFrameObserver* const _cbRtcpIntraFrameObserver; |
Erik Språng | 6b8d355 | 2015-09-24 15:06:57 +0200 | [diff] [blame] | 229 | TransportFeedbackObserver* const _cbTransportFeedbackObserver; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 230 | |
danilchap | 7c9426c | 2016-04-14 03:05:31 -0700 | [diff] [blame] | 231 | rtc::CriticalSection _criticalSectionRTCPReceiver; |
sprang | 7dc39f3 | 2015-10-13 09:17:48 -0700 | [diff] [blame] | 232 | uint32_t main_ssrc_ GUARDED_BY(_criticalSectionRTCPReceiver); |
| 233 | uint32_t _remoteSSRC GUARDED_BY(_criticalSectionRTCPReceiver); |
| 234 | std::set<uint32_t> registered_ssrcs_ GUARDED_BY(_criticalSectionRTCPReceiver); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 235 | |
pwestin@webrtc.org | 26f8d9c | 2012-01-19 15:53:09 +0000 | [diff] [blame] | 236 | // Received send report |
| 237 | RTCPSenderInfo _remoteSenderInfo; |
| 238 | // when did we receive the last send report |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame] | 239 | uint32_t _lastReceivedSRNTPsecs; |
| 240 | uint32_t _lastReceivedSRNTPfrac; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 241 | |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 242 | // Received XR receive time report. |
| 243 | RtcpReceiveTimeInfo _remoteXRReceiveTimeInfo; |
| 244 | // Time when the report was received. |
| 245 | uint32_t _lastReceivedXRNTPsecs; |
| 246 | uint32_t _lastReceivedXRNTPfrac; |
asapersson@webrtc.org | 7d6bd22 | 2013-10-31 12:14:34 +0000 | [diff] [blame] | 247 | // Estimated rtt, zero when there is no valid estimate. |
Danil Chapovalov | c1e55c7 | 2016-03-09 15:14:35 +0100 | [diff] [blame] | 248 | bool xr_rrtr_status_ GUARDED_BY(_criticalSectionRTCPReceiver); |
pkasting@chromium.org | 16825b1 | 2015-01-12 21:51:21 +0000 | [diff] [blame] | 249 | int64_t xr_rr_rtt_ms_; |
asapersson@webrtc.org | 8469f7b | 2013-10-02 13:15:34 +0000 | [diff] [blame] | 250 | |
pwestin@webrtc.org | 26f8d9c | 2012-01-19 15:53:09 +0000 | [diff] [blame] | 251 | // Received report blocks. |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 252 | ReportBlockMap _receivedReportBlockMap |
| 253 | GUARDED_BY(_criticalSectionRTCPReceiver); |
stefan@webrtc.org | b586507 | 2013-02-01 14:33:42 +0000 | [diff] [blame] | 254 | ReceivedInfoMap _receivedInfoMap; |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 255 | std::map<uint32_t, RTCPUtility::RTCPCnameInformation*> _receivedCnameMap; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 256 | |
mflodman@webrtc.org | 2f225ca | 2013-01-09 13:54:43 +0000 | [diff] [blame] | 257 | // The last time we received an RTCP RR. |
| 258 | int64_t _lastReceivedRrMs; |
| 259 | |
asapersson@webrtc.org | cb79141 | 2014-12-18 14:30:32 +0000 | [diff] [blame] | 260 | // The time we last received an RTCP RR telling we have successfully |
mflodman@webrtc.org | 2f225ca | 2013-01-09 13:54:43 +0000 | [diff] [blame] | 261 | // delivered RTP packet to the remote side. |
| 262 | int64_t _lastIncreasedSequenceNumberMs; |
stefan@webrtc.org | 8ca8a71 | 2013-04-23 16:48:32 +0000 | [diff] [blame] | 263 | |
pbos@webrtc.org | a28a91d | 2015-02-17 14:45:08 +0000 | [diff] [blame] | 264 | RtcpStatisticsCallback* stats_callback_ GUARDED_BY(_criticalSectionFeedbacks); |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 +0000 | [diff] [blame] | 265 | |
pbos@webrtc.org | 1d0fa5d | 2015-02-19 12:47:00 +0000 | [diff] [blame] | 266 | RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; |
asapersson@webrtc.org | 8098e07 | 2014-02-19 11:59:02 +0000 | [diff] [blame] | 267 | RtcpPacketTypeCounter packet_type_counter_; |
asapersson@webrtc.org | 2dd3134 | 2014-10-29 12:42:30 +0000 | [diff] [blame] | 268 | |
| 269 | RTCPUtility::NackStats nack_stats_; |
Erik Språng | 6b8d355 | 2015-09-24 15:06:57 +0200 | [diff] [blame] | 270 | |
| 271 | size_t num_skipped_packets_; |
| 272 | int64_t last_skipped_packets_warning_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 273 | }; |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 274 | } // namespace webrtc |
danilchap | da161d7 | 2016-08-19 07:29:46 -0700 | [diff] [blame] | 275 | #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ |