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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 uint32_t* NTPfrac, | 302 uint32_t* NTPfrac, |
303 uint32_t* remote_sr) const; | 303 uint32_t* remote_sr) const; |
304 | 304 |
305 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; | 305 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; |
306 | 306 |
307 int32_t BoundingSet(bool* tmmbr_owner, TMMBRSet* bounding_set_rec); | 307 int32_t BoundingSet(bool* tmmbr_owner, TMMBRSet* bounding_set_rec); |
308 | 308 |
309 void BitrateSent(uint32_t* total_rate, | 309 void BitrateSent(uint32_t* total_rate, |
310 uint32_t* video_rate, | 310 uint32_t* video_rate, |
311 uint32_t* fec_rate, | 311 uint32_t* fec_rate, |
312 uint32_t* nackRate) const override; | 312 uint32_t* nackRate) override; |
313 | 313 |
314 // Good state of RTP receiver inform sender. | 314 // Good state of RTP receiver inform sender. |
315 int32_t SendRTCPReferencePictureSelection(uint64_t picture_id) override; | 315 int32_t SendRTCPReferencePictureSelection(uint64_t picture_id) override; |
316 | 316 |
317 void RegisterSendChannelRtpStatisticsCallback( | 317 void RegisterSendChannelRtpStatisticsCallback( |
318 StreamDataCountersCallback* callback) override; | 318 StreamDataCountersCallback* callback) override; |
319 StreamDataCountersCallback* GetSendChannelRtpStatisticsCallback() | 319 StreamDataCountersCallback* GetSendChannelRtpStatisticsCallback() |
320 const override; | 320 const override; |
321 | 321 |
322 void OnReceivedNACK(const std::list<uint16_t>& nack_sequence_numbers); | 322 void OnReceivedNACK(const std::list<uint16_t>& nack_sequence_numbers); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 PacketLossStats receive_loss_stats_; | 367 PacketLossStats receive_loss_stats_; |
368 | 368 |
369 // The processed RTT from RtcpRttStats. | 369 // The processed RTT from RtcpRttStats. |
370 rtc::CriticalSection critical_section_rtt_; | 370 rtc::CriticalSection critical_section_rtt_; |
371 int64_t rtt_ms_; | 371 int64_t rtt_ms_; |
372 }; | 372 }; |
373 | 373 |
374 } // namespace webrtc | 374 } // namespace webrtc |
375 | 375 |
376 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 376 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |