| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 PacketInformation* packet_information) | 175 PacketInformation* packet_information) |
| 176 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | 176 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); |
| 177 | 177 |
| 178 void HandleBye(const rtcp::CommonHeader& rtcp_block) | 178 void HandleBye(const rtcp::CommonHeader& rtcp_block) |
| 179 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | 179 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); |
| 180 | 180 |
| 181 void HandlePli(const rtcp::CommonHeader& rtcp_block, | 181 void HandlePli(const rtcp::CommonHeader& rtcp_block, |
| 182 PacketInformation* packet_information) | 182 PacketInformation* packet_information) |
| 183 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | 183 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); |
| 184 | 184 |
| 185 void HandleSli(const rtcp::CommonHeader& rtcp_block, | |
| 186 PacketInformation* packet_information) | |
| 187 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | |
| 188 | |
| 189 void HandleRpsi(const rtcp::CommonHeader& rtcp_block, | |
| 190 PacketInformation* packet_information) | |
| 191 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | |
| 192 | |
| 193 void HandlePsfbApp(const rtcp::CommonHeader& rtcp_block, | 185 void HandlePsfbApp(const rtcp::CommonHeader& rtcp_block, |
| 194 PacketInformation* packet_information) | 186 PacketInformation* packet_information) |
| 195 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | 187 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); |
| 196 | 188 |
| 197 void HandleTmmbr(const rtcp::CommonHeader& rtcp_block, | 189 void HandleTmmbr(const rtcp::CommonHeader& rtcp_block, |
| 198 PacketInformation* packet_information) | 190 PacketInformation* packet_information) |
| 199 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); | 191 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); |
| 200 | 192 |
| 201 void HandleTmmbn(const rtcp::CommonHeader& rtcp_block, | 193 void HandleTmmbn(const rtcp::CommonHeader& rtcp_block, |
| 202 PacketInformation* packet_information) | 194 PacketInformation* packet_information) |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; | 256 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; |
| 265 RtcpPacketTypeCounter packet_type_counter_; | 257 RtcpPacketTypeCounter packet_type_counter_; |
| 266 | 258 |
| 267 RtcpNackStats nack_stats_; | 259 RtcpNackStats nack_stats_; |
| 268 | 260 |
| 269 size_t num_skipped_packets_; | 261 size_t num_skipped_packets_; |
| 270 int64_t last_skipped_packets_warning_ms_; | 262 int64_t last_skipped_packets_warning_ms_; |
| 271 }; | 263 }; |
| 272 } // namespace webrtc | 264 } // namespace webrtc |
| 273 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ | 265 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ |
| OLD | NEW |