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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 480 * (REMB) Receiver Estimated Max Bitrate | 480 * (REMB) Receiver Estimated Max Bitrate |
| 481 */ | 481 */ |
| 482 virtual bool REMB() const = 0; | 482 virtual bool REMB() const = 0; |
| 483 | 483 |
| 484 virtual void SetREMBStatus(bool enable) = 0; | 484 virtual void SetREMBStatus(bool enable) = 0; |
| 485 | 485 |
| 486 virtual void SetREMBData(uint32_t bitrate, | 486 virtual void SetREMBData(uint32_t bitrate, |
| 487 const std::vector<uint32_t>& ssrcs) = 0; | 487 const std::vector<uint32_t>& ssrcs) = 0; |
| 488 | 488 |
| 489 /* | 489 /* |
| 490 * (IJ) Extended jitter report. | |
| 491 */ | |
| 492 virtual bool IJ() const = 0; | |
| 493 | |
| 494 virtual void SetIJStatus(bool enable) = 0; | |
| 495 | |
|
åsapersson
2015/07/22 05:58:27
Also update mock_rtp_rtcp.h.
sprang_webrtc
2015/07/23 13:50:40
Done.
| |
| 496 /* | |
| 497 * (TMMBR) Temporary Max Media Bit Rate | 490 * (TMMBR) Temporary Max Media Bit Rate |
| 498 */ | 491 */ |
| 499 virtual bool TMMBR() const = 0; | 492 virtual bool TMMBR() const = 0; |
| 500 | 493 |
| 501 virtual void SetTMMBRStatus(bool enable) = 0; | 494 virtual void SetTMMBRStatus(bool enable) = 0; |
| 502 | 495 |
| 503 /* | 496 /* |
| 504 * (NACK) | 497 * (NACK) |
| 505 */ | 498 */ |
| 506 | 499 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 637 | 630 |
| 638 /* | 631 /* |
| 639 * send a request for a keyframe | 632 * send a request for a keyframe |
| 640 * | 633 * |
| 641 * return -1 on failure else 0 | 634 * return -1 on failure else 0 |
| 642 */ | 635 */ |
| 643 virtual int32_t RequestKeyFrame() = 0; | 636 virtual int32_t RequestKeyFrame() = 0; |
| 644 }; | 637 }; |
| 645 } // namespace webrtc | 638 } // namespace webrtc |
| 646 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_H_ | 639 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_H_ |
| OLD | NEW |