diff options
author | Chris Robinson <[email protected]> | 2013-10-29 14:44:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-29 14:44:07 -0700 |
commit | 779eb4b82b8c50174ae8bb464bc4938cff07d231 (patch) | |
tree | a9014838a33a6cd51ef1e1077be627cd08874a83 /Alc/ALc.c | |
parent | 6e43757fedda8365c4cd24824460027ea9020d55 (diff) |
Convert the PulseAudio backend to the new interface
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ struct BackendInfo { #define EmptyFuncs { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL } static struct BackendInfo BackendList[] = { #ifdef HAVE_PULSEAUDIO - { "pulse", NULL, alc_pulse_init, alc_pulse_deinit, alc_pulse_probe, EmptyFuncs }, + { "pulse", ALCpulseBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs }, #endif #ifdef HAVE_ALSA { "alsa", ALCalsaBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs }, |