| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 // requests. | 221 // requests. |
| 222 void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override; | 222 void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override; |
| 223 | 223 |
| 224 bool StorePackets() const override; | 224 bool StorePackets() const override; |
| 225 | 225 |
| 226 // Called on receipt of RTCP report block from remote side. | 226 // Called on receipt of RTCP report block from remote side. |
| 227 void RegisterRtcpStatisticsCallback( | 227 void RegisterRtcpStatisticsCallback( |
| 228 RtcpStatisticsCallback* callback) override; | 228 RtcpStatisticsCallback* callback) override; |
| 229 RtcpStatisticsCallback* GetRtcpStatisticsCallback() override; | 229 RtcpStatisticsCallback* GetRtcpStatisticsCallback() override; |
| 230 | 230 |
| 231 bool SendFeedbackPacket(const rtcp::TransportFeedback& packet) override; |
| 231 // (APP) Application specific data. | 232 // (APP) Application specific data. |
| 232 int32_t SetRTCPApplicationSpecificData(uint8_t sub_type, | 233 int32_t SetRTCPApplicationSpecificData(uint8_t sub_type, |
| 233 uint32_t name, | 234 uint32_t name, |
| 234 const uint8_t* data, | 235 const uint8_t* data, |
| 235 uint16_t length) override; | 236 uint16_t length) override; |
| 236 | 237 |
| 237 // (XR) VOIP metric. | 238 // (XR) VOIP metric. |
| 238 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric) override; | 239 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric) override; |
| 239 | 240 |
| 240 // (XR) Receiver reference time report. | 241 // (XR) Receiver reference time report. |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 PacketLossStats receive_loss_stats_; | 380 PacketLossStats receive_loss_stats_; |
| 380 | 381 |
| 381 // The processed RTT from RtcpRttStats. | 382 // The processed RTT from RtcpRttStats. |
| 382 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; | 383 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; |
| 383 int64_t rtt_ms_; | 384 int64_t rtt_ms_; |
| 384 }; | 385 }; |
| 385 | 386 |
| 386 } // namespace webrtc | 387 } // namespace webrtc |
| 387 | 388 |
| 388 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 389 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
| OLD | NEW |