/system/bt/hci/src/ |
hci_audio.c | 31 bt_vendor_op_audio_state_t audio_state; local 33 audio_state.handle = handle; 34 audio_state.peer_codec = codec; 35 audio_state.state = state; 37 vendor_get_interface()->send_command(VENDOR_SET_AUDIO_STATE, &audio_state);
|
/external/webrtc/webrtc/audio/ |
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->typing_noise_detected()) [all...] |
audio_send_stream.h | 15 #include "webrtc/audio_state.h" 31 const rtc::scoped_refptr<webrtc::AudioState>& audio_state,
|
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();
|
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::__anon26261::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());
|
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();
|
audio_receive_stream.h | 15 #include "webrtc/audio_state.h" 33 const rtc::scoped_refptr<webrtc::AudioState>& audio_state);
|
audio_receive_stream_unittest.cc | 119 rtc::scoped_refptr<AudioState> audio_state() { return audio_state_; } function in struct:webrtc::test::__anon26260::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());
|
/external/webrtc/talk/app/webrtc/ |
mediacontroller.cc | 70 config.audio_state = media_engine->GetAudioState();
|
/external/webrtc/webrtc/ |
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/ |
call_unittest.cc | 15 #include "webrtc/audio_state.h" 26 config.audio_state = webrtc::AudioState::Create(audio_state_config);
|
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);
|
call_perf_tests.cc | 245 sender_config.audio_state = AudioState::Create(send_audio_state_config); 247 receiver_config.audio_state = sender_config.audio_state;
|
bitrate_estimator_tests.cc | 16 #include "webrtc/audio_state.h" 113 config.audio_state = AudioState::Create(audio_state_config);
|
/external/webrtc/webrtc/test/ |
call_test.cc | 51 send_config.audio_state = AudioState::Create(audio_state_config); 59 recv_config.audio_state = AudioState::Create(audio_state_config);
|
/tools/test/connectivity/acts/framework/acts/test_utils/tel/ |
tel_voice_utils.py | [all...] |