Chromium Code Reviews| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 446 // indication. | 446 // indication. |
| 447 // This API shall be called before transmision of an RTP packet to ensure | 447 // This API shall be called before transmision of an RTP packet to ensure |
| 448 // that the |level| part of the extended RTP header is updated. | 448 // that the |level| part of the extended RTP header is updated. |
| 449 // return -1 on failure else 0. | 449 // return -1 on failure else 0. |
| 450 virtual int32_t SetAudioLevel(uint8_t level_dbov) = 0; | 450 virtual int32_t SetAudioLevel(uint8_t level_dbov) = 0; |
| 451 | 451 |
| 452 // ************************************************************************** | 452 // ************************************************************************** |
| 453 // Video | 453 // Video |
| 454 // ************************************************************************** | 454 // ************************************************************************** |
| 455 | 455 |
| 456 // Turn on/off ULPFEC. | 456 // Set RED and ULPFEC payload types. A payload type of -1 |
| 457 virtual void SetUlpfecConfig(bool enabled, | 457 // means that the corresponding feature is turned off. |
| 458 int red_payload_type, | 458 // That is, RED and ULPFEC can be enabled/disabled individually. |
|
danilchap
2016/10/28 11:35:46
may be rephrase to note one can't use ULPFEC witho
brandtr
2016/10/28 12:11:45
Added longer explanation.
Within WebRTC, this fun
| |
| 459 virtual void SetUlpfecConfig(int red_payload_type, | |
| 459 int ulpfec_payload_type) = 0; | 460 int ulpfec_payload_type) = 0; |
| 460 | 461 |
| 461 virtual int32_t SetFecParameters(const FecProtectionParams* delta_params, | 462 virtual int32_t SetFecParameters(const FecProtectionParams* delta_params, |
| 462 const FecProtectionParams* key_params) = 0; | 463 const FecProtectionParams* key_params) = 0; |
| 463 | 464 |
| 464 // Set method for requestion a new key frame. | 465 // Set method for requestion a new key frame. |
| 465 // Returns -1 on failure else 0. | 466 // Returns -1 on failure else 0. |
| 466 virtual int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) = 0; | 467 virtual int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) = 0; |
| 467 | 468 |
| 468 // Sends a request for a keyframe. | 469 // Sends a request for a keyframe. |
| 469 // Returns -1 on failure else 0. | 470 // Returns -1 on failure else 0. |
| 470 virtual int32_t RequestKeyFrame() = 0; | 471 virtual int32_t RequestKeyFrame() = 0; |
| 471 }; | 472 }; |
| 472 | 473 |
| 473 } // namespace webrtc | 474 } // namespace webrtc |
| 474 | 475 |
| 475 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_H_ | 476 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_H_ |
| OLD | NEW |