diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-07-03 22:08:43 -0300 |
---|---|---|
committer | Saracen <SaracenOne@gmail.com> | 2018-07-27 16:50:10 +0100 |
commit | 061358d8385a78a32a30ac5acf5443c465c8ec61 (patch) | |
tree | 9956b66bde27fa25ef97095b8b5f2422495783b1 /drivers/alsa/audio_driver_alsa.cpp | |
parent | 76fd9d215c25874b1c5d33355de0ed983922c32d (diff) |
Modified Microphone implementation to handle only one device at a time (WIP)
Diffstat (limited to 'drivers/alsa/audio_driver_alsa.cpp')
-rw-r--r-- | drivers/alsa/audio_driver_alsa.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/drivers/alsa/audio_driver_alsa.cpp b/drivers/alsa/audio_driver_alsa.cpp index 29b1207927..a44a11a46d 100644 --- a/drivers/alsa/audio_driver_alsa.cpp +++ b/drivers/alsa/audio_driver_alsa.cpp @@ -339,28 +339,6 @@ void AudioDriverALSA::finish() { finish_device(); } -bool AudioDriverALSA::capture_device_start(StringName p_name) { - - return false; -} - -bool AudioDriverALSA::capture_device_stop(StringName p_name) { - - return false; -} - -PoolStringArray AudioDriverALSA::capture_device_get_names() { - - PoolStringArray names; - - return names; -} - -StringName AudioDriverALSA::capture_device_get_default_name() { - - return ""; -} - AudioDriverALSA::AudioDriverALSA() { mutex = NULL; |