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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 void SetREMBData(uint32_t bitrate, | 202 void SetREMBData(uint32_t bitrate, |
203 const std::vector<uint32_t>& ssrcs) override; | 203 const std::vector<uint32_t>& ssrcs) override; |
204 | 204 |
205 // (TMMBR) Temporary Max Media Bit Rate. | 205 // (TMMBR) Temporary Max Media Bit Rate. |
206 bool TMMBR() const override; | 206 bool TMMBR() const override; |
207 | 207 |
208 void SetTMMBRStatus(bool enable) override; | 208 void SetTMMBRStatus(bool enable) override; |
209 | 209 |
210 void SetTmmbn(std::vector<rtcp::TmmbItem> bounding_set) override; | 210 void SetTmmbn(std::vector<rtcp::TmmbItem> bounding_set) override; |
211 | 211 |
212 size_t MaxPayloadSize() const override; | |
213 | |
214 size_t MaxRtpPacketSize() const override; | 212 size_t MaxRtpPacketSize() const override; |
215 | 213 |
216 void SetMaxRtpPacketSize(size_t max_packet_size) override; | 214 void SetMaxRtpPacketSize(size_t max_packet_size) override; |
217 | 215 |
218 // (NACK) Negative acknowledgment part. | 216 // (NACK) Negative acknowledgment part. |
219 | 217 |
220 int SelectiveRetransmissions() const override; | 218 int SelectiveRetransmissions() const override; |
221 | 219 |
222 int SetSelectiveRetransmissions(uint8_t settings) override; | 220 int SetSelectiveRetransmissions(uint8_t settings) override; |
223 | 221 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 PacketLossStats receive_loss_stats_; | 355 PacketLossStats receive_loss_stats_; |
358 | 356 |
359 // The processed RTT from RtcpRttStats. | 357 // The processed RTT from RtcpRttStats. |
360 rtc::CriticalSection critical_section_rtt_; | 358 rtc::CriticalSection critical_section_rtt_; |
361 int64_t rtt_ms_; | 359 int64_t rtt_ms_; |
362 }; | 360 }; |
363 | 361 |
364 } // namespace webrtc | 362 } // namespace webrtc |
365 | 363 |
366 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 364 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |