Searched defs:audio_state (Results 1 - 7 of 7) sorted by relevance
/external/webrtc/webrtc/audio/ |
H A D | audio_state_unittest.cc | 13 #include "webrtc/audio/audio_state.h" 40 rtc::scoped_refptr<AudioState> audio_state = local 42 EXPECT_TRUE(audio_state.get()); 47 rtc::scoped_ptr<internal::AudioState> audio_state( 53 rtc::scoped_ptr<internal::AudioState> audio_state( 55 EXPECT_EQ(audio_state->voice_engine(), &helper.voice_engine()); 60 rtc::scoped_ptr<internal::AudioState> audio_state( 63 static_cast<VoiceEngineObserver*>(audio_state.get()); 64 EXPECT_FALSE(audio_state->typing_noise_detected()); 67 EXPECT_FALSE(audio_state [all...] |
H A D | audio_receive_stream.cc | 17 #include "webrtc/audio/audio_state.h" 86 const rtc::scoped_refptr<webrtc::AudioState>& audio_state) 88 audio_state_(audio_state), 249 internal::AudioState* audio_state = local 251 VoiceEngine* voice_engine = audio_state->voice_engine(); 83 AudioReceiveStream( CongestionController* congestion_controller, const webrtc::AudioReceiveStream::Config& config, const rtc::scoped_refptr<webrtc::AudioState>& audio_state) argument
|
H A D | audio_send_stream_unittest.cc | 17 #include "webrtc/audio/audio_state.h" 108 rtc::scoped_refptr<AudioState> audio_state() { return audio_state_; } function in struct:webrtc::test::__anon19994::ConfigHelper 187 internal::AudioSendStream send_stream(helper.config(), helper.audio_state(), 193 internal::AudioSendStream send_stream(helper.config(), helper.audio_state(), 202 internal::AudioSendStream send_stream(helper.config(), helper.audio_state(), 230 internal::AudioSendStream send_stream(helper.config(), helper.audio_state(), 236 static_cast<internal::AudioState*>(helper.audio_state().get());
|
H A D | audio_receive_stream_unittest.cc | 119 rtc::scoped_refptr<AudioState> audio_state() { return audio_state_; } function in struct:webrtc::test::__anon19993::ConfigHelper 223 helper.congestion_controller(), helper.config(), helper.audio_state()); 242 helper.congestion_controller(), helper.config(), helper.audio_state()); 268 helper.congestion_controller(), helper.config(), helper.audio_state()); 289 helper.congestion_controller(), helper.config(), helper.audio_state());
|
H A D | audio_send_stream.cc | 15 #include "webrtc/audio/audio_state.h" 61 const rtc::scoped_refptr<webrtc::AudioState>& audio_state, 63 : config_(config), audio_state_(audio_state) { 201 internal::AudioState* audio_state = local 203 stats.typing_noise_detected = audio_state->typing_noise_detected(); 214 internal::AudioState* audio_state = local 216 VoiceEngine* voice_engine = audio_state->voice_engine(); 59 AudioSendStream( const webrtc::AudioSendStream::Config& config, const rtc::scoped_refptr<webrtc::AudioState>& audio_state, CongestionController* congestion_controller) argument
|
/external/webrtc/webrtc/ |
H A D | call.h | 19 #include "webrtc/audio_state.h" 85 rtc::scoped_refptr<AudioState> audio_state; member in struct:webrtc::Call::Config
|
/external/webrtc/webrtc/call/ |
H A D | call.cc | 18 #include "webrtc/audio/audio_state.h" 109 internal::AudioState* audio_state = local 110 static_cast<internal::AudioState*>(config_.audio_state.get()); 111 if (audio_state) 112 return audio_state->voice_engine(); 212 if (config.audio_state.get()) { 304 config, config_.audio_state, congestion_controller_.get()); 339 congestion_controller_.get(), config, config_.audio_state);
|
Completed in 72 milliseconds