| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 // (XR) VOIP metric. | 246 // (XR) VOIP metric. |
| 247 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric) override; | 247 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric) override; |
| 248 | 248 |
| 249 // (XR) Receiver reference time report. | 249 // (XR) Receiver reference time report. |
| 250 void SetRtcpXrRrtrStatus(bool enable) override; | 250 void SetRtcpXrRrtrStatus(bool enable) override; |
| 251 | 251 |
| 252 bool RtcpXrRrtrStatus() const override; | 252 bool RtcpXrRrtrStatus() const override; |
| 253 | 253 |
| 254 // Audio part. | 254 // Audio part. |
| 255 | 255 |
| 256 // This function is deprecated. It was previously used to determine when it | |
| 257 // was time to send a DTMF packet in silence (CNG). | |
| 258 int32_t SetAudioPacketSize(uint16_t packet_size_samples) override; | |
| 259 | |
| 260 // Send a TelephoneEvent tone using RFC 2833 (4733). | 256 // Send a TelephoneEvent tone using RFC 2833 (4733). |
| 261 int32_t SendTelephoneEventOutband(uint8_t key, | 257 int32_t SendTelephoneEventOutband(uint8_t key, |
| 262 uint16_t time_ms, | 258 uint16_t time_ms, |
| 263 uint8_t level) override; | 259 uint8_t level) override; |
| 264 | 260 |
| 265 // Store the audio level in d_bov for header-extension-for-audio-level- | 261 // Store the audio level in d_bov for header-extension-for-audio-level- |
| 266 // indication. | 262 // indication. |
| 267 int32_t SetAudioLevel(uint8_t level_d_bov) override; | 263 int32_t SetAudioLevel(uint8_t level_d_bov) override; |
| 268 | 264 |
| 269 // Video part. | 265 // Video part. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 PacketLossStats receive_loss_stats_; | 354 PacketLossStats receive_loss_stats_; |
| 359 | 355 |
| 360 // The processed RTT from RtcpRttStats. | 356 // The processed RTT from RtcpRttStats. |
| 361 rtc::CriticalSection critical_section_rtt_; | 357 rtc::CriticalSection critical_section_rtt_; |
| 362 int64_t rtt_ms_; | 358 int64_t rtt_ms_; |
| 363 }; | 359 }; |
| 364 | 360 |
| 365 } // namespace webrtc | 361 } // namespace webrtc |
| 366 | 362 |
| 367 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ | 363 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ |
| OLD | NEW |