Home
last modified time | relevance | path

Searched refs:AudioState (Results 1 – 20 of 20) sorted by relevance

/external/webrtc/webrtc/audio/
Daudio_state.cc21 AudioState::AudioState(const AudioState::Config& config) in AudioState() function in webrtc::internal::AudioState
28 AudioState::~AudioState() { in ~AudioState()
33 VoiceEngine* AudioState::voice_engine() { in voice_engine()
38 bool AudioState::typing_noise_detected() const { in typing_noise_detected()
45 int AudioState::AddRef() const { in AddRef()
50 int AudioState::Release() const { in Release()
58 void AudioState::CallbackOnError(int channel_id, int err_code) { in CallbackOnError()
75 rtc::scoped_refptr<AudioState> AudioState::Create( in Create()
76 const AudioState::Config& config) { in Create()
77 return rtc::scoped_refptr<AudioState>(new internal::AudioState(config)); in Create()
Daudio_state_unittest.cc29 AudioState::Config& config() { return config_; } in config()
34 AudioState::Config config_;
40 rtc::scoped_refptr<AudioState> audio_state = in TEST()
41 AudioState::Create(helper.config()); in TEST()
47 rtc::scoped_ptr<internal::AudioState> audio_state( in TEST()
48 new internal::AudioState(helper.config())); in TEST()
53 rtc::scoped_ptr<internal::AudioState> audio_state( in TEST()
54 new internal::AudioState(helper.config())); in TEST()
60 rtc::scoped_ptr<internal::AudioState> audio_state( in TEST()
61 new internal::AudioState(helper.config())); in TEST()
Daudio_state.h24 class AudioState final : public webrtc::AudioState,
27 explicit AudioState(const AudioState::Config& config);
28 ~AudioState() override;
43 const webrtc::AudioState::Config config_;
56 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioState);
Daudio_send_stream_unittest.cc67 AudioState::Config config; in ConfigHelper()
69 audio_state_ = AudioState::Create(config); in ConfigHelper()
108 rtc::scoped_refptr<AudioState> audio_state() { return audio_state_; } in audio_state()
158 rtc::scoped_refptr<AudioState> audio_state_;
235 internal::AudioState* internal_audio_state = in TEST()
236 static_cast<internal::AudioState*>(helper.audio_state().get()); in TEST()
Daudio_send_stream.cc61 const rtc::scoped_refptr<webrtc::AudioState>& audio_state, in AudioSendStream()
201 internal::AudioState* audio_state = in GetStats()
202 static_cast<internal::AudioState*>(audio_state_.get()); in GetStats()
214 internal::AudioState* audio_state = in voice_engine()
215 static_cast<internal::AudioState*>(audio_state_.get()); in voice_engine()
Daudio_send_stream.h31 const rtc::scoped_refptr<webrtc::AudioState>& audio_state,
53 rtc::scoped_refptr<webrtc::AudioState> audio_state_;
Daudio_receive_stream.h33 const rtc::scoped_refptr<webrtc::AudioState>& audio_state);
58 rtc::scoped_refptr<webrtc::AudioState> audio_state_;
Daudio_receive_stream_unittest.cc78 AudioState::Config config; in ConfigHelper()
80 audio_state_ = AudioState::Create(config); in ConfigHelper()
119 rtc::scoped_refptr<AudioState> audio_state() { return audio_state_; } in audio_state()
159 rtc::scoped_refptr<AudioState> audio_state_;
Daudio_receive_stream.cc86 const rtc::scoped_refptr<webrtc::AudioState>& audio_state) in AudioReceiveStream()
249 internal::AudioState* audio_state = in voice_engine()
250 static_cast<internal::AudioState*>(audio_state_.get()); in voice_engine()
/external/webrtc/webrtc/
Daudio_state.h28 class AudioState : public rtc::RefCountInterface {
41 static rtc::scoped_refptr<AudioState> Create(
42 const AudioState::Config& config);
44 virtual ~AudioState() {} in ~AudioState()
Dcall.h85 rtc::scoped_refptr<AudioState> audio_state;
/external/webrtc/webrtc/call/
Dcall_unittest.cc23 webrtc::AudioState::Config audio_state_config; in CallHelper()
26 config.audio_state = webrtc::AudioState::Create(audio_state_config); in CallHelper()
Dbitrate_estimator_tests.cc110 AudioState::Config audio_state_config; in SetUp()
113 config.audio_state = AudioState::Create(audio_state_config); in SetUp()
Dcall_perf_tests.cc242 AudioState::Config send_audio_state_config; in TestAudioVideoSync()
245 sender_config.audio_state = AudioState::Create(send_audio_state_config); in TestAudioVideoSync()
Dcall.cc109 internal::AudioState* audio_state = in voice_engine()
110 static_cast<internal::AudioState*>(config_.audio_state.get()); in voice_engine()
/external/webrtc/talk/media/base/
Dmediaengine.h78 virtual rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const = 0;
153 virtual rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const { in GetAudioState()
Dfakemediaengine.h730 rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const { in GetAudioState()
731 return rtc::scoped_refptr<webrtc::AudioState>(); in GetAudioState()
/external/webrtc/webrtc/test/
Dcall_test.cc49 AudioState::Config audio_state_config; in RunBaseTest()
51 send_config.audio_state = AudioState::Create(audio_state_config); in RunBaseTest()
57 AudioState::Config audio_state_config; in RunBaseTest()
59 recv_config.audio_state = AudioState::Create(audio_state_config); in RunBaseTest()
/external/webrtc/talk/media/webrtc/
Dwebrtcvoiceengine.h70 rtc::scoped_refptr<webrtc::AudioState> GetAudioState() const;
130 rtc::scoped_refptr<webrtc::AudioState> audio_state_;
Dwebrtcvoiceengine.cc270 webrtc::AudioState::Config MakeAudioStateConfig(VoEWrapper* voe_wrapper) { in MakeAudioStateConfig()
271 webrtc::AudioState::Config config; in MakeAudioStateConfig()
468 audio_state_(webrtc::AudioState::Create(MakeAudioStateConfig(voe()))) { in WebRtcVoiceEngine()
557 rtc::scoped_refptr<webrtc::AudioState>