HomeSort by relevance Sort by last modified time
    Searched defs:voice_engine (Results 1 - 9 of 9) sorted by null

  /external/webrtc/webrtc/
audio_state.h 34 VoiceEngine* voice_engine = nullptr; member in struct:webrtc::AudioState::Config
  /external/webrtc/webrtc/audio/
audio_state.cc 16 #include "webrtc/voice_engine/include/voe_errors.h"
22 : config_(config), voe_base_(config.voice_engine) {
33 VoiceEngine* AudioState::voice_engine() { function in class:webrtc::internal::AudioState
35 return config_.voice_engine;
audio_state_unittest.cc 27 config_.voice_engine = &voice_engine_;
30 MockVoiceEngine& voice_engine() { return voice_engine_; } function in struct:webrtc::test::__anon49574::ConfigHelper
55 EXPECT_EQ(audio_state->voice_engine(), &helper.voice_engine());
audio_receive_stream.cc 24 #include "webrtc/voice_engine/channel_proxy.h"
25 #include "webrtc/voice_engine/include/voe_base.h"
26 #include "webrtc/voice_engine/include/voe_codec.h"
27 #include "webrtc/voice_engine/include/voe_neteq_stats.h"
28 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h"
29 #include "webrtc/voice_engine/include/voe_video_sync.h"
30 #include "webrtc/voice_engine/include/voe_volume_control.h"
31 #include "webrtc/voice_engine/voice_engine_impl.h"
96 VoiceEngineImpl* voe_impl = static_cast<VoiceEngineImpl*>(voice_engine());
194 ScopedVoEInterface<VoECodec> codec(voice_engine());
248 VoiceEngine* AudioReceiveStream::voice_engine() const { function in class:webrtc::internal::AudioReceiveStream
251 VoiceEngine* voice_engine = audio_state->voice_engine(); local
    [all...]
audio_send_stream.cc 23 #include "webrtc/voice_engine/channel_proxy.h"
24 #include "webrtc/voice_engine/include/voe_audio_processing.h"
25 #include "webrtc/voice_engine/include/voe_codec.h"
26 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h"
27 #include "webrtc/voice_engine/include/voe_volume_control.h"
28 #include "webrtc/voice_engine/voice_engine_impl.h"
69 VoiceEngineImpl* voe_impl = static_cast<VoiceEngineImpl*>(voice_engine());
129 ScopedVoEInterface<VoEAudioProcessing> processing(voice_engine());
130 ScopedVoEInterface<VoECodec> codec(voice_engine());
131 ScopedVoEInterface<VoEVolumeControl> volume(voice_engine());
213 VoiceEngine* AudioSendStream::voice_engine() const { function in class:webrtc::internal::AudioSendStream
216 VoiceEngine* voice_engine = audio_state->voice_engine(); local
    [all...]
audio_receive_stream_unittest.cc 79 config.voice_engine = &voice_engine_;
120 MockVoiceEngine& voice_engine() { return voice_engine_; } function in struct:webrtc::test::__anon49572::ConfigHelper
  /external/webrtc/webrtc/test/
call_test.h 58 // RunBaseTest overwrites the audio_state and the voice_engine of the send and
112 : voice_engine(nullptr),
119 VoiceEngine* voice_engine; member in struct:webrtc::test::CallTest::VoiceEngineState
  /external/webrtc/webrtc/call/
call.cc 45 #include "webrtc/voice_engine/include/voe_codec.h"
108 VoiceEngine* voice_engine() { function in class:webrtc::internal::Call
112 return audio_state->voice_engine();
213 ScopedVoEInterface<VoECodec> voe_codec(voice_engine());
442 voice_engine(), module_process_thread_.get(), call_stats_.get());
608 if (voice_engine() == nullptr || sync_group.empty())
646 video_stream->SetSyncChannel(voice_engine(),
649 video_stream->SetSyncChannel(voice_engine(), -1);
call_perf_tests.cc 39 #include "webrtc/voice_engine/include/voe_base.h"
40 #include "webrtc/voice_engine/include/voe_codec.h"
41 #include "webrtc/voice_engine/include/voe_network.h"
42 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h"
43 #include "webrtc/voice_engine/include/voe_video_sync.h"
224 VoiceEngine* voice_engine = VoiceEngine::Create(); local
225 VoEBase* voe_base = VoEBase::GetInterface(voice_engine);
226 VoECodec* voe_codec = VoECodec::GetInterface(voice_engine);
227 VoENetwork* voe_network = VoENetwork::GetInterface(voice_engine);
228 VoEVideoSync* voe_sync = VoEVideoSync::GetInterface(voice_engine);
    [all...]

Completed in 109 milliseconds