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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 bool InputMute() const; | 251 bool InputMute() const; |
252 int SetOutputVolumePan(float left, float right); | 252 int SetOutputVolumePan(float left, float right); |
253 int GetOutputVolumePan(float& left, float& right) const; | 253 int GetOutputVolumePan(float& left, float& right) const; |
254 int SetChannelOutputVolumeScaling(float scaling); | 254 int SetChannelOutputVolumeScaling(float scaling); |
255 int GetChannelOutputVolumeScaling(float& scaling) const; | 255 int GetChannelOutputVolumeScaling(float& scaling) const; |
256 | 256 |
257 // VoENetEqStats | 257 // VoENetEqStats |
258 int GetNetworkStatistics(NetworkStatistics& stats); | 258 int GetNetworkStatistics(NetworkStatistics& stats); |
259 void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const; | 259 void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const; |
260 | 260 |
261 // VoEVideoSync | 261 // Audio+Video Sync |
262 bool GetDelayEstimate(int* jitter_buffer_delay_ms, | |
263 int* playout_buffer_delay_ms) const; | |
264 uint32_t GetDelayEstimate() const; | 262 uint32_t GetDelayEstimate() const; |
265 int LeastRequiredDelayMs() const; | |
266 int SetMinimumPlayoutDelay(int delayMs); | 263 int SetMinimumPlayoutDelay(int delayMs); |
267 int GetPlayoutTimestamp(unsigned int& timestamp); | 264 int GetPlayoutTimestamp(unsigned int& timestamp); |
268 int SetInitTimestamp(unsigned int timestamp); | |
269 int SetInitSequenceNumber(short sequenceNumber); | |
270 | |
271 // VoEVideoSyncExtended | |
272 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; | 265 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; |
273 | 266 |
274 // DTMF | 267 // DTMF |
275 int SendTelephoneEventOutband(int event, int duration_ms); | 268 int SendTelephoneEventOutband(int event, int duration_ms); |
276 int SetSendTelephoneEventPayloadType(int payload_type, int payload_frequency); | 269 int SetSendTelephoneEventPayloadType(int payload_type, int payload_frequency); |
277 | 270 |
278 // VoEAudioProcessingImpl | 271 // VoEAudioProcessingImpl |
279 int VoiceActivityIndicator(int& activity); | 272 int VoiceActivityIndicator(int& activity); |
280 | 273 |
281 // VoERTP_RTCP | 274 // VoERTP_RTCP |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; | 513 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; |
521 | 514 |
522 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. | 515 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. |
523 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; | 516 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; |
524 }; | 517 }; |
525 | 518 |
526 } // namespace voe | 519 } // namespace voe |
527 } // namespace webrtc | 520 } // namespace webrtc |
528 | 521 |
529 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 522 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |