| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 std::vector<RTCPReportBlock>* receive_blocks) const override; | 180 std::vector<RTCPReportBlock>* receive_blocks) const override; |
| 181 | 181 |
| 182 // (REMB) Receiver Estimated Max Bitrate. | 182 // (REMB) Receiver Estimated Max Bitrate. |
| 183 bool REMB() const override; | 183 bool REMB() const override; |
| 184 | 184 |
| 185 void SetREMBStatus(bool enable) override; | 185 void SetREMBStatus(bool enable) override; |
| 186 | 186 |
| 187 void SetREMBData(uint32_t bitrate, | 187 void SetREMBData(uint32_t bitrate, |
| 188 const std::vector<uint32_t>& ssrcs) override; | 188 const std::vector<uint32_t>& ssrcs) override; |
| 189 | 189 |
| 190 // (IJ) Extended jitter report. | |
| 191 bool IJ() const override; | |
| 192 | |
| 193 void SetIJStatus(bool enable) override; | |
| 194 | |
| 195 // (TMMBR) Temporary Max Media Bit Rate. | 190 // (TMMBR) Temporary Max Media Bit Rate. |
| 196 bool TMMBR() const override; | 191 bool TMMBR() const override; |
| 197 | 192 |
| 198 void SetTMMBRStatus(bool enable) override; | 193 void SetTMMBRStatus(bool enable) override; |
| 199 | 194 |
| 200 int32_t SetTMMBN(const TMMBRSet* bounding_set); | 195 int32_t SetTMMBN(const TMMBRSet* bounding_set); |
| 201 | 196 |
| 202 uint16_t MaxPayloadLength() const override; | 197 uint16_t MaxPayloadLength() const override; |
| 203 | 198 |
| 204 uint16_t MaxDataPayloadLength() const override; | 199 uint16_t MaxDataPayloadLength() const override; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 RtcpRttStats* rtt_stats_; | 372 RtcpRttStats* rtt_stats_; |
| 378 | 373 |
| 379 // The processed RTT from RtcpRttStats. | 374 // The processed RTT from RtcpRttStats. |
| 380 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; | 375 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; |
| 381 int64_t rtt_ms_; | 376 int64_t rtt_ms_; |
| 382 }; | 377 }; |
| 383 | 378 |
| 384 } // namespace webrtc | 379 } // namespace webrtc |
| 385 | 380 |
| 386 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 381 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
| OLD | NEW |