diff options
author | Chris Robinson <[email protected]> | 2010-01-08 01:08:27 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-01-08 01:08:27 -0800 |
commit | 91f28fa87c476f2415dd3d8ab4b70f789a07ec9f (patch) | |
tree | 6663c1f3a6b0cd56cbc47fc48659cd5c37cb9850 /Alc/ALc.c | |
parent | 82547db2db6276e2ce22eef4ce470b08a9714e16 (diff) |
Try the PulseAudio backend first
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -48,6 +48,9 @@ typedef struct BackendInfo { BackendFuncs Funcs; } BackendInfo; static BackendInfo BackendList[] = { +#ifdef HAVE_PULSEAUDIO + { "pulse", alc_pulse_init, alc_pulse_deinit, alc_pulse_probe, EmptyFuncs }, +#endif #ifdef HAVE_ALSA { "alsa", alc_alsa_init, alc_alsa_deinit, alc_alsa_probe, EmptyFuncs }, #endif @@ -66,9 +69,6 @@ static BackendInfo BackendList[] = { #ifdef HAVE_PORTAUDIO { "port", alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs }, #endif -#ifdef HAVE_PULSEAUDIO - { "pulse", alc_pulse_init, alc_pulse_deinit, alc_pulse_probe, EmptyFuncs }, -#endif { "wave", alc_wave_init, alc_wave_deinit, alc_wave_probe, EmptyFuncs }, |