diff options
author | Chris Robinson <[email protected]> | 2013-10-28 21:56:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-28 21:56:14 -0700 |
commit | 16d5d5760c09018a600394d3eeccfb9f3a880b9b (patch) | |
tree | 462ec916070f80da6dfbd514cfd3103582861175 /Alc/ALc.c | |
parent | 7a424ab4bfb71b2e93f820799ae4c60e416ed642 (diff) |
Convert ALSA to the new backend interface
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ static struct BackendInfo BackendList[] = { { "pulse", NULL, alc_pulse_init, alc_pulse_deinit, alc_pulse_probe, EmptyFuncs }, #endif #ifdef HAVE_ALSA - { "alsa", NULL, alc_alsa_init, alc_alsa_deinit, alc_alsa_probe, EmptyFuncs }, + { "alsa", ALCalsaBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs }, #endif #ifdef HAVE_COREAUDIO { "core", NULL, alc_ca_init, alc_ca_deinit, alc_ca_probe, EmptyFuncs }, |