aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-03-15 04:58:56 -0700
committerChris Robinson <[email protected]>2011-03-15 04:58:56 -0700
commitd6c8bb35b4f9af60cd1dd43c35d530937c95a3ef (patch)
tree3522bb5552597e42ab010c4d190fb14c27e14299 /Alc/ALc.c
parent4899674b6c765370f80f6e57aaddfd2985baf6e5 (diff)
Add a CoreAudio backend
Code courtesy of Garin Hiebert <[email protected]>
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 95783e52..3d157ca1 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -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