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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 bool InputMute() const; | 266 bool InputMute() const; |
267 int SetOutputVolumePan(float left, float right); | 267 int SetOutputVolumePan(float left, float right); |
268 int GetOutputVolumePan(float& left, float& right) const; | 268 int GetOutputVolumePan(float& left, float& right) const; |
269 int SetChannelOutputVolumeScaling(float scaling); | 269 int SetChannelOutputVolumeScaling(float scaling); |
270 int GetChannelOutputVolumeScaling(float& scaling) const; | 270 int GetChannelOutputVolumeScaling(float& scaling) const; |
271 | 271 |
272 // VoENetEqStats | 272 // VoENetEqStats |
273 int GetNetworkStatistics(NetworkStatistics& stats); | 273 int GetNetworkStatistics(NetworkStatistics& stats); |
274 void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const; | 274 void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const; |
275 | 275 |
276 // VoEVideoSync | 276 // Audio+Video Sync |
277 bool GetDelayEstimate(int* jitter_buffer_delay_ms, | |
278 int* playout_buffer_delay_ms) const; | |
279 uint32_t GetDelayEstimate() const; | 277 uint32_t GetDelayEstimate() const; |
280 int LeastRequiredDelayMs() const; | |
281 int SetMinimumPlayoutDelay(int delayMs); | 278 int SetMinimumPlayoutDelay(int delayMs); |
282 int GetPlayoutTimestamp(unsigned int& timestamp); | 279 int GetPlayoutTimestamp(unsigned int& timestamp); |
283 int SetInitTimestamp(unsigned int timestamp); | |
284 int SetInitSequenceNumber(short sequenceNumber); | |
285 | |
286 // VoEVideoSyncExtended | |
287 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; | 280 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; |
288 | 281 |
289 // DTMF | 282 // DTMF |
290 int SendTelephoneEventOutband(int event, int duration_ms); | 283 int SendTelephoneEventOutband(int event, int duration_ms); |
291 int SetSendTelephoneEventPayloadType(int payload_type, int payload_frequency); | 284 int SetSendTelephoneEventPayloadType(int payload_type, int payload_frequency); |
292 | 285 |
293 // VoEAudioProcessingImpl | 286 // VoEAudioProcessingImpl |
294 int VoiceActivityIndicator(int& activity); | 287 int VoiceActivityIndicator(int& activity); |
295 | 288 |
296 // VoERTP_RTCP | 289 // VoERTP_RTCP |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; | 547 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; |
555 | 548 |
556 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. | 549 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. |
557 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; | 550 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; |
558 }; | 551 }; |
559 | 552 |
560 } // namespace voe | 553 } // namespace voe |
561 } // namespace webrtc | 554 } // namespace webrtc |
562 | 555 |
563 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 556 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |