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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 | 295 |
296 int32_t SetFecParameters(const FecProtectionParams* delta_params, | 296 int32_t SetFecParameters(const FecProtectionParams* delta_params, |
297 const FecProtectionParams* key_params) override; | 297 const FecProtectionParams* key_params) override; |
298 | 298 |
299 bool LastReceivedNTP(uint32_t* NTPsecs, | 299 bool LastReceivedNTP(uint32_t* NTPsecs, |
300 uint32_t* NTPfrac, | 300 uint32_t* NTPfrac, |
301 uint32_t* remote_sr) const; | 301 uint32_t* remote_sr) const; |
302 | 302 |
303 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; | 303 bool LastReceivedXrReferenceTimeInfo(RtcpReceiveTimeInfo* info) const; |
304 | 304 |
305 int32_t BoundingSet(bool* tmmbr_owner, TMMBRSet* bounding_set_rec); | 305 int32_t BoundingSet(bool* tmmbr_owner, |
| 306 std::vector<rtcp::TmmbItem>* bounding_set_rec); |
306 | 307 |
307 void BitrateSent(uint32_t* total_rate, | 308 void BitrateSent(uint32_t* total_rate, |
308 uint32_t* video_rate, | 309 uint32_t* video_rate, |
309 uint32_t* fec_rate, | 310 uint32_t* fec_rate, |
310 uint32_t* nackRate) const override; | 311 uint32_t* nackRate) const override; |
311 | 312 |
312 // Good state of RTP receiver inform sender. | 313 // Good state of RTP receiver inform sender. |
313 int32_t SendRTCPReferencePictureSelection(uint64_t picture_id) override; | 314 int32_t SendRTCPReferencePictureSelection(uint64_t picture_id) override; |
314 | 315 |
315 void RegisterSendChannelRtpStatisticsCallback( | 316 void RegisterSendChannelRtpStatisticsCallback( |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 PacketLossStats receive_loss_stats_; | 365 PacketLossStats receive_loss_stats_; |
365 | 366 |
366 // The processed RTT from RtcpRttStats. | 367 // The processed RTT from RtcpRttStats. |
367 rtc::CriticalSection critical_section_rtt_; | 368 rtc::CriticalSection critical_section_rtt_; |
368 int64_t rtt_ms_; | 369 int64_t rtt_ms_; |
369 }; | 370 }; |
370 | 371 |
371 } // namespace webrtc | 372 } // namespace webrtc |
372 | 373 |
373 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 374 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |