diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-05-03 17:44:07 -0300 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-05-03 17:44:07 -0300 |
commit | b9836fbc07794ea75c86dcd8bb27aad6d96c667d (patch) | |
tree | fec9876a355a648ae2788c863083af0b9129fa82 /src/lib/ecore_audio | |
parent | 70e882cefb2b9383d2d7d15df1bb05b6d770393c (diff) |
Revert "ecore_audio: Add alsa support"
This reverts commit 4db03f700cfaa8261db11a3a0c7162f0e7b71f0d.
Diffstat (limited to 'src/lib/ecore_audio')
-rw-r--r-- | src/lib/ecore_audio/Ecore_Audio.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_private.h | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/ecore_audio/Ecore_Audio.h b/src/lib/ecore_audio/Ecore_Audio.h index 5e676348f0..e97706032f 100644 --- a/src/lib/ecore_audio/Ecore_Audio.h +++ b/src/lib/ecore_audio/Ecore_Audio.h | |||
@@ -212,8 +212,6 @@ EAPI int ecore_audio_shutdown(void); | |||
212 | 212 | ||
213 | #include <ecore_audio_obj_out_pulse.h> | 213 | #include <ecore_audio_obj_out_pulse.h> |
214 | 214 | ||
215 | #include <ecore_audio_obj_out_alsa.h> | ||
216 | |||
217 | /** | 215 | /** |
218 | * @} | 216 | * @} |
219 | */ | 217 | */ |
diff --git a/src/lib/ecore_audio/ecore_audio_private.h b/src/lib/ecore_audio/ecore_audio_private.h index a28ca7c374..35afa85f4c 100644 --- a/src/lib/ecore_audio/ecore_audio_private.h +++ b/src/lib/ecore_audio/ecore_audio_private.h | |||
@@ -146,6 +146,14 @@ extern Eina_List *ecore_audio_modules; | |||
146 | 146 | ||
147 | #ifdef HAVE_ALSA | 147 | #ifdef HAVE_ALSA |
148 | /* ecore_audio_alsa */ | 148 | /* ecore_audio_alsa */ |
149 | struct _Ecore_Audio_Alsa | ||
150 | { | ||
151 | ECORE_MAGIC; | ||
152 | snd_pcm_t *handle; | ||
153 | unsigned int channels; | ||
154 | unsigned int samplerate; | ||
155 | }; | ||
156 | |||
149 | Ecore_Audio_Module *ecore_audio_alsa_init(void); | 157 | Ecore_Audio_Module *ecore_audio_alsa_init(void); |
150 | void ecore_audio_alsa_shutdown(void); | 158 | void ecore_audio_alsa_shutdown(void); |
151 | #endif /* HAVE_ALSA */ | 159 | #endif /* HAVE_ALSA */ |