OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 124 |
125 void HandleSenderReceiverReport( | 125 void HandleSenderReceiverReport( |
126 RTCPUtility::RTCPParserV2& rtcpParser, | 126 RTCPUtility::RTCPParserV2& rtcpParser, |
127 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); | 127 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); |
128 | 128 |
129 void HandleReportBlock( | 129 void HandleReportBlock( |
130 const RTCPUtility::RTCPPacket& rtcpPacket, | 130 const RTCPUtility::RTCPPacket& rtcpPacket, |
131 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation, | 131 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation, |
132 uint32_t remoteSSRC); | 132 uint32_t remoteSSRC); |
133 | 133 |
134 void HandleSDES(RTCPUtility::RTCPParserV2& rtcpParser); | 134 void HandleSDES(RTCPUtility::RTCPParserV2& rtcpParser, |
| 135 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); |
135 | 136 |
136 void HandleSDESChunk(RTCPUtility::RTCPParserV2& rtcpParser); | 137 void HandleSDESChunk(RTCPUtility::RTCPParserV2& rtcpParser); |
137 | 138 |
138 void HandleXrHeader(RTCPUtility::RTCPParserV2& parser, | 139 void HandleXrHeader(RTCPUtility::RTCPParserV2& parser, |
139 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); | 140 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); |
140 | 141 |
141 void HandleXrReceiveReferenceTime( | 142 void HandleXrReceiveReferenceTime( |
142 RTCPUtility::RTCPParserV2& parser, | 143 RTCPUtility::RTCPParserV2& parser, |
143 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); | 144 RTCPHelp::RTCPPacketInformation& rtcpPacketInformation); |
144 | 145 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 | 279 |
279 RtcpStatisticsCallback* stats_callback_ GUARDED_BY(_criticalSectionFeedbacks); | 280 RtcpStatisticsCallback* stats_callback_ GUARDED_BY(_criticalSectionFeedbacks); |
280 | 281 |
281 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; | 282 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; |
282 RtcpPacketTypeCounter packet_type_counter_; | 283 RtcpPacketTypeCounter packet_type_counter_; |
283 | 284 |
284 RTCPUtility::NackStats nack_stats_; | 285 RTCPUtility::NackStats nack_stats_; |
285 }; | 286 }; |
286 } // namespace webrtc | 287 } // namespace webrtc |
287 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ | 288 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ |
OLD | NEW |