Searched defs:audioLayer (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/webrtc/voice_engine/
H A Dvoe_hardware_impl.cc47 int VoEHardwareImpl::SetAudioDeviceLayer(AudioLayers audioLayer) { argument
49 "SetAudioDeviceLayer(audioLayer=%d)", audioLayer);
60 switch (audioLayer) {
84 int VoEHardwareImpl::GetAudioDeviceLayer(AudioLayers& audioLayer) { argument
105 audioLayer = kAudioPlatformDefault;
108 audioLayer = kAudioWindowsCore;
111 audioLayer = kAudioWindowsWave;
114 audioLayer = kAudioLinuxAlsa;
117 audioLayer
[all...]
/external/webrtc/webrtc/modules/audio_device/test/
H A Dfunc_test_manager.cc748 AudioDeviceModule::AudioLayer audioLayer; local
749 EXPECT_EQ(0, audioDevice->ActiveAudioLayer(&audioLayer));
751 if (audioLayer == AudioDeviceModule::kWindowsWaveAudio)
754 } else if (audioLayer == AudioDeviceModule::kWindowsCoreAudio)
757 } else if (audioLayer == AudioDeviceModule::kLinuxAlsaAudio)
760 } else if (audioLayer == AudioDeviceModule::kLinuxPulseAudio)
772 if (audioLayer == AudioDeviceModule::kWindowsWaveAudio)
782 } else if (audioLayer == AudioDeviceModule::kWindowsCoreAudio)
883 EXPECT_EQ(0, _audioDevice->ActiveAudioLayer(&audioLayer));
885 if (audioLayer
2408 AudioDeviceModule::AudioLayer audioLayer; local
[all...]
/external/webrtc/webrtc/modules/audio_device/
H A Daudio_device_impl.cc72 int32_t id, AudioDeviceModule::AudioLayer audioLayer) {
73 return AudioDeviceModuleImpl::Create(id, audioLayer);
85 const AudioLayer audioLayer)
89 new RefCountImpl<AudioDeviceModuleImpl>(id, audioLayer);
126 AudioDeviceModuleImpl::AudioDeviceModuleImpl(const int32_t id, const AudioLayer audioLayer) : argument
133 _platformAudioLayer(audioLayer),
203 AudioLayer audioLayer(PlatformAudioLayer());
208 if ((audioLayer == kWindowsWaveAudio)
211 || (audioLayer == kPlatformDefaultAudio)
220 if ((audioLayer
71 CreateAudioDeviceModule( int32_t id, AudioDeviceModule::AudioLayer audioLayer) argument
84 Create(const int32_t id, const AudioLayer audioLayer) argument
[all...]

Completed in 296 milliseconds