| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 uint32_t GetDelayEstimate() const; | 287 uint32_t GetDelayEstimate() const; |
| 288 int LeastRequiredDelayMs() const; | 288 int LeastRequiredDelayMs() const; |
| 289 int SetMinimumPlayoutDelay(int delayMs); | 289 int SetMinimumPlayoutDelay(int delayMs); |
| 290 int GetPlayoutTimestamp(unsigned int& timestamp); | 290 int GetPlayoutTimestamp(unsigned int& timestamp); |
| 291 int SetInitTimestamp(unsigned int timestamp); | 291 int SetInitTimestamp(unsigned int timestamp); |
| 292 int SetInitSequenceNumber(short sequenceNumber); | 292 int SetInitSequenceNumber(short sequenceNumber); |
| 293 | 293 |
| 294 // VoEVideoSyncExtended | 294 // VoEVideoSyncExtended |
| 295 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; | 295 int GetRtpRtcp(RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) const; |
| 296 | 296 |
| 297 // VoEDtmf | 297 // DTMF |
| 298 int SendTelephoneEventOutband(int event, int duration_ms); | 298 int SendTelephoneEventOutband(int event, int duration_ms); |
| 299 int SetSendTelephoneEventPayloadType(unsigned char type); | 299 int SetSendTelephoneEventPayloadType(int payload_type); |
| 300 | 300 |
| 301 // VoEAudioProcessingImpl | 301 // VoEAudioProcessingImpl |
| 302 int UpdateRxVadDetection(AudioFrame& audioFrame); | 302 int UpdateRxVadDetection(AudioFrame& audioFrame); |
| 303 int RegisterRxVadObserver(VoERxVadCallback& observer); | 303 int RegisterRxVadObserver(VoERxVadCallback& observer); |
| 304 int DeRegisterRxVadObserver(); | 304 int DeRegisterRxVadObserver(); |
| 305 int VoiceActivityIndicator(int& activity); | 305 int VoiceActivityIndicator(int& activity); |
| 306 #ifdef WEBRTC_VOICE_ENGINE_AGC | 306 #ifdef WEBRTC_VOICE_ENGINE_AGC |
| 307 int SetRxAgcStatus(bool enable, AgcModes mode); | 307 int SetRxAgcStatus(bool enable, AgcModes mode); |
| 308 int GetRxAgcStatus(bool& enabled, AgcModes& mode); | 308 int GetRxAgcStatus(bool& enabled, AgcModes& mode); |
| 309 int SetRxAgcConfig(AgcConfig config); | 309 int SetRxAgcConfig(AgcConfig config); |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 PacketRouter* packet_router_ = nullptr; | 575 PacketRouter* packet_router_ = nullptr; |
| 576 std::unique_ptr<TransportFeedbackProxy> feedback_observer_proxy_; | 576 std::unique_ptr<TransportFeedbackProxy> feedback_observer_proxy_; |
| 577 std::unique_ptr<TransportSequenceNumberProxy> seq_num_allocator_proxy_; | 577 std::unique_ptr<TransportSequenceNumberProxy> seq_num_allocator_proxy_; |
| 578 std::unique_ptr<RtpPacketSenderProxy> rtp_packet_sender_proxy_; | 578 std::unique_ptr<RtpPacketSenderProxy> rtp_packet_sender_proxy_; |
| 579 }; | 579 }; |
| 580 | 580 |
| 581 } // namespace voe | 581 } // namespace voe |
| 582 } // namespace webrtc | 582 } // namespace webrtc |
| 583 | 583 |
| 584 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 584 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
| OLD | NEW |