diff options
author | Chris Robinson <[email protected]> | 2011-06-12 04:41:42 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-06-12 04:41:42 -0700 |
commit | ba069ded407339c319c06bd21f924a103860d764 (patch) | |
tree | 7a032d2acca54729ffa4baf7ea019a286646a677 /Alc/ALc.c | |
parent | 6b8209fdc9d31dd902eca93d2184cd55513d7b50 (diff) |
Add an OpenSL backend
Currently for Android's OpenSL ES implementation
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -97,6 +97,9 @@ static BackendInfo BackendList[] = { #ifdef HAVE_PORTAUDIO { "port", alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs }, #endif +#ifdef HAVE_OPENSL + { "opensl", alc_opensl_init, alc_opensl_deinit, alc_opensl_probe, EmptyFuncs }, +#endif { "null", alc_null_init, alc_null_deinit, alc_null_probe, EmptyFuncs }, #ifdef HAVE_WAVE |