diff options
author | Chris Robinson <[email protected]> | 2011-03-15 04:58:56 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-03-15 04:58:56 -0700 |
commit | d6c8bb35b4f9af60cd1dd43c35d530937c95a3ef (patch) | |
tree | 3522bb5552597e42ab010c4d190fb14c27e14299 /Alc/ALc.c | |
parent | 4899674b6c765370f80f6e57aaddfd2985baf6e5 (diff) |
Add a CoreAudio backend
Code courtesy of Garin Hiebert <[email protected]>
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -54,6 +54,9 @@ static BackendInfo BackendList[] = { #ifdef HAVE_ALSA { "alsa", alc_alsa_init, alc_alsa_deinit, alc_alsa_probe, EmptyFuncs }, #endif +#ifdef HAVE_COREAUDIO + { "core", alc_ca_init, alc_ca_deinit, alc_ca_probe, EmptyFuncs }, +#endif #ifdef HAVE_OSS { "oss", alc_oss_init, alc_oss_deinit, alc_oss_probe, EmptyFuncs }, #endif |