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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 int32_t RemoteCNAME(uint32_t remote_ssrc, | 137 int32_t RemoteCNAME(uint32_t remote_ssrc, |
138 char c_name[RTCP_CNAME_SIZE]) const override; | 138 char c_name[RTCP_CNAME_SIZE]) const override; |
139 | 139 |
140 // Get remote NTP. | 140 // Get remote NTP. |
141 int32_t RemoteNTP(uint32_t* received_ntp_secs, | 141 int32_t RemoteNTP(uint32_t* received_ntp_secs, |
142 uint32_t* received_ntp_frac, | 142 uint32_t* received_ntp_frac, |
143 uint32_t* rtcp_arrival_time_secs, | 143 uint32_t* rtcp_arrival_time_secs, |
144 uint32_t* rtcp_arrival_time_frac, | 144 uint32_t* rtcp_arrival_time_frac, |
145 uint32_t* rtcp_timestamp) const override; | 145 uint32_t* rtcp_timestamp) const override; |
146 | 146 |
147 int32_t AddMixedCNAME(uint32_t ssrc, | 147 int32_t AddMixedCNAME(uint32_t ssrc, const char* c_name) override; |
148 const char c_name[RTCP_CNAME_SIZE]) override; | |
149 | 148 |
150 int32_t RemoveMixedCNAME(uint32_t ssrc) override; | 149 int32_t RemoveMixedCNAME(uint32_t ssrc) override; |
151 | 150 |
152 // Get RoundTripTime. | 151 // Get RoundTripTime. |
153 int32_t RTT(uint32_t remote_ssrc, | 152 int32_t RTT(uint32_t remote_ssrc, |
154 int64_t* rtt, | 153 int64_t* rtt, |
155 int64_t* avg_rtt, | 154 int64_t* avg_rtt, |
156 int64_t* min_rtt, | 155 int64_t* min_rtt, |
157 int64_t* max_rtt) const override; | 156 int64_t* max_rtt) const override; |
158 | 157 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 RtcpRttStats* rtt_stats_; | 377 RtcpRttStats* rtt_stats_; |
379 | 378 |
380 // The processed RTT from RtcpRttStats. | 379 // The processed RTT from RtcpRttStats. |
381 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; | 380 rtc::scoped_ptr<CriticalSectionWrapper> critical_section_rtt_; |
382 int64_t rtt_ms_; | 381 int64_t rtt_ms_; |
383 }; | 382 }; |
384 | 383 |
385 } // namespace webrtc | 384 } // namespace webrtc |
386 | 385 |
387 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 386 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
OLD | NEW |