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 |
288 void SetGenericFECStatus(bool enable, | 290 void SetGenericFECStatus(bool enable, |
289 uint8_t payload_type_red, | 291 uint8_t payload_type_red, |
290 uint8_t payload_type_fec) override; | 292 uint8_t payload_type_fec) override; |
291 | 293 |
292 void GenericFECStatus(bool* enable, | 294 void GenericFECStatus(bool* enable, |
293 uint8_t* payload_type_red, | 295 uint8_t* payload_type_red, |
294 uint8_t* payload_type_fec) override; | 296 uint8_t* payload_type_fec) override; |
295 | 297 |
296 int32_t SetFecParameters(const FecProtectionParams* delta_params, | 298 int32_t SetFecParameters(const FecProtectionParams* delta_params, |
297 const FecProtectionParams* key_params) override; | 299 const FecProtectionParams* key_params) override; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 PacketLossStats receive_loss_stats_; | 367 PacketLossStats receive_loss_stats_; |
366 | 368 |
367 // The processed RTT from RtcpRttStats. | 369 // The processed RTT from RtcpRttStats. |
368 rtc::CriticalSection critical_section_rtt_; | 370 rtc::CriticalSection critical_section_rtt_; |
369 int64_t rtt_ms_; | 371 int64_t rtt_ms_; |
370 }; | 372 }; |
371 | 373 |
372 } // namespace webrtc | 374 } // namespace webrtc |
373 | 375 |
374 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 376 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |