| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 uint32_t time_stamp, | 116 uint32_t time_stamp, |
| 117 int64_t capture_time_ms, | 117 int64_t capture_time_ms, |
| 118 const uint8_t* payload_data, | 118 const uint8_t* payload_data, |
| 119 size_t payload_size, | 119 size_t payload_size, |
| 120 const RTPFragmentationHeader* fragmentation = NULL, | 120 const RTPFragmentationHeader* fragmentation = NULL, |
| 121 const RTPVideoHeader* rtp_video_hdr = NULL) override; | 121 const RTPVideoHeader* rtp_video_hdr = NULL) override; |
| 122 | 122 |
| 123 bool TimeToSendPacket(uint32_t ssrc, | 123 bool TimeToSendPacket(uint32_t ssrc, |
| 124 uint16_t sequence_number, | 124 uint16_t sequence_number, |
| 125 int64_t capture_time_ms, | 125 int64_t capture_time_ms, |
| 126 bool retransmission, | 126 bool retransmission) override; |
| 127 int probe_cluster_id) override; | |
| 128 | 127 |
| 129 // Returns the number of padding bytes actually sent, which can be more or | 128 // Returns the number of padding bytes actually sent, which can be more or |
| 130 // less than |bytes|. | 129 // less than |bytes|. |
| 131 size_t TimeToSendPadding(size_t bytes, int probe_cluster_id) override; | 130 size_t TimeToSendPadding(size_t bytes) override; |
| 132 | 131 |
| 133 // RTCP part. | 132 // RTCP part. |
| 134 | 133 |
| 135 // Get RTCP status. | 134 // Get RTCP status. |
| 136 RtcpMode RTCP() const override; | 135 RtcpMode RTCP() const override; |
| 137 | 136 |
| 138 // Configure RTCP status i.e on/off. | 137 // Configure RTCP status i.e on/off. |
| 139 void SetRTCPStatus(RtcpMode method) override; | 138 void SetRTCPStatus(RtcpMode method) override; |
| 140 | 139 |
| 141 // Set RTCP CName. | 140 // Set RTCP CName. |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 PacketLossStats receive_loss_stats_; | 364 PacketLossStats receive_loss_stats_; |
| 366 | 365 |
| 367 // The processed RTT from RtcpRttStats. | 366 // The processed RTT from RtcpRttStats. |
| 368 rtc::CriticalSection critical_section_rtt_; | 367 rtc::CriticalSection critical_section_rtt_; |
| 369 int64_t rtt_ms_; | 368 int64_t rtt_ms_; |
| 370 }; | 369 }; |
| 371 | 370 |
| 372 } // namespace webrtc | 371 } // namespace webrtc |
| 373 | 372 |
| 374 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 373 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
| OLD | NEW |