| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 | 180 |
| 181 void GetSendStreamDataCounters( | 181 void GetSendStreamDataCounters( |
| 182 StreamDataCounters* rtp_counters, | 182 StreamDataCounters* rtp_counters, |
| 183 StreamDataCounters* rtx_counters) const override; | 183 StreamDataCounters* rtx_counters) const override; |
| 184 | 184 |
| 185 void GetRtpPacketLossStats( | 185 void GetRtpPacketLossStats( |
| 186 bool outgoing, | 186 bool outgoing, |
| 187 uint32_t ssrc, | 187 uint32_t ssrc, |
| 188 struct RtpPacketLossStats* loss_stats) const override; | 188 struct RtpPacketLossStats* loss_stats) const override; |
| 189 | 189 |
| 190 // Get received RTCP report, sender info. | |
| 191 int32_t RemoteRTCPStat(RTCPSenderInfo* sender_info) override; | |
| 192 | |
| 193 // Get received RTCP report, report block. | 190 // Get received RTCP report, report block. |
| 194 int32_t RemoteRTCPStat( | 191 int32_t RemoteRTCPStat( |
| 195 std::vector<RTCPReportBlock>* receive_blocks) const override; | 192 std::vector<RTCPReportBlock>* receive_blocks) const override; |
| 196 | 193 |
| 197 // (REMB) Receiver Estimated Max Bitrate. | 194 // (REMB) Receiver Estimated Max Bitrate. |
| 198 bool REMB() const override; | 195 bool REMB() const override; |
| 199 | 196 |
| 200 void SetREMBStatus(bool enable) override; | 197 void SetREMBStatus(bool enable) override; |
| 201 | 198 |
| 202 void SetREMBData(uint32_t bitrate, | 199 void SetREMBData(uint32_t bitrate, |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 PacketLossStats receive_loss_stats_; | 355 PacketLossStats receive_loss_stats_; |
| 359 | 356 |
| 360 // The processed RTT from RtcpRttStats. | 357 // The processed RTT from RtcpRttStats. |
| 361 rtc::CriticalSection critical_section_rtt_; | 358 rtc::CriticalSection critical_section_rtt_; |
| 362 int64_t rtt_ms_; | 359 int64_t rtt_ms_; |
| 363 }; | 360 }; |
| 364 | 361 |
| 365 } // namespace webrtc | 362 } // namespace webrtc |
| 366 | 363 |
| 367 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 364 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
| OLD | NEW |