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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 void SetREMBStatus(bool enable) override; | 198 void SetREMBStatus(bool enable) override; |
199 | 199 |
200 void SetREMBData(uint32_t bitrate, | 200 void SetREMBData(uint32_t bitrate, |
201 const std::vector<uint32_t>& ssrcs) override; | 201 const std::vector<uint32_t>& ssrcs) override; |
202 | 202 |
203 // (TMMBR) Temporary Max Media Bit Rate. | 203 // (TMMBR) Temporary Max Media Bit Rate. |
204 bool TMMBR() const override; | 204 bool TMMBR() const override; |
205 | 205 |
206 void SetTMMBRStatus(bool enable) override; | 206 void SetTMMBRStatus(bool enable) override; |
207 | 207 |
208 void SetTMMBN(const std::vector<rtcp::TmmbItem>* bounding_set); | 208 void SetTmmbn(std::vector<rtcp::TmmbItem> bounding_set); |
209 | 209 |
210 uint16_t MaxPayloadLength() const override; | 210 uint16_t MaxPayloadLength() const override; |
211 | 211 |
212 uint16_t MaxDataPayloadLength() const override; | 212 uint16_t MaxDataPayloadLength() const override; |
213 | 213 |
214 int32_t SetMaxTransferUnit(uint16_t size) override; | 214 int32_t SetMaxTransferUnit(uint16_t size) override; |
215 | 215 |
216 int32_t SetTransportOverhead(bool tcp, | 216 int32_t SetTransportOverhead(bool tcp, |
217 bool ipv6, | 217 bool ipv6, |
218 uint8_t authentication_overhead = 0) override; | 218 uint8_t authentication_overhead = 0) override; |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 PacketLossStats receive_loss_stats_; | 360 PacketLossStats receive_loss_stats_; |
361 | 361 |
362 // The processed RTT from RtcpRttStats. | 362 // The processed RTT from RtcpRttStats. |
363 rtc::CriticalSection critical_section_rtt_; | 363 rtc::CriticalSection critical_section_rtt_; |
364 int64_t rtt_ms_; | 364 int64_t rtt_ms_; |
365 }; | 365 }; |
366 | 366 |
367 } // namespace webrtc | 367 } // namespace webrtc |
368 | 368 |
369 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 369 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |