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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 // Video part. | 278 // Video part. |
279 | 279 |
280 int32_t SendRTCPSliceLossIndication(uint8_t picture_id) override; | 280 int32_t SendRTCPSliceLossIndication(uint8_t picture_id) override; |
281 | 281 |
282 // Set method for requesting a new key frame. | 282 // Set method for requesting a new key frame. |
283 int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) override; | 283 int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) override; |
284 | 284 |
285 // Send a request for a keyframe. | 285 // Send a request for a keyframe. |
286 int32_t RequestKeyFrame() override; | 286 int32_t RequestKeyFrame() override; |
287 | 287 |
288 void SetTargetSendBitrate(uint32_t bitrate_bps) override; | |
289 | |
290 void SetGenericFECStatus(bool enable, | 288 void SetGenericFECStatus(bool enable, |
291 uint8_t payload_type_red, | 289 uint8_t payload_type_red, |
292 uint8_t payload_type_fec) override; | 290 uint8_t payload_type_fec) override; |
293 | 291 |
294 void GenericFECStatus(bool* enable, | 292 void GenericFECStatus(bool* enable, |
295 uint8_t* payload_type_red, | 293 uint8_t* payload_type_red, |
296 uint8_t* payload_type_fec) override; | 294 uint8_t* payload_type_fec) override; |
297 | 295 |
298 int32_t SetFecParameters(const FecProtectionParams* delta_params, | 296 int32_t SetFecParameters(const FecProtectionParams* delta_params, |
299 const FecProtectionParams* key_params) override; | 297 const FecProtectionParams* key_params) override; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 PacketLossStats receive_loss_stats_; | 365 PacketLossStats receive_loss_stats_; |
368 | 366 |
369 // The processed RTT from RtcpRttStats. | 367 // The processed RTT from RtcpRttStats. |
370 rtc::CriticalSection critical_section_rtt_; | 368 rtc::CriticalSection critical_section_rtt_; |
371 int64_t rtt_ms_; | 369 int64_t rtt_ms_; |
372 }; | 370 }; |
373 | 371 |
374 } // namespace webrtc | 372 } // namespace webrtc |
375 | 373 |
376 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 374 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |