From d778130dc483f4f70f385ce60b690781fe556d75 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 26 Sep 2014 15:52:29 +0200 Subject: audio/out: disable ao_sndio by default Don't build it, move it down the autoprobe list even if it's enabled. It doesn't work well enough. --- audio/out/ao.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio') diff --git a/audio/out/ao.c b/audio/out/ao.c index 9e4dd88b5d..8685260204 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -60,9 +60,6 @@ static const struct ao_driver * const audio_out_drivers[] = { #if HAVE_PULSE &audio_out_pulse, #endif -#if HAVE_SNDIO - &audio_out_sndio, -#endif #if HAVE_ALSA &audio_out_alsa, #endif @@ -87,6 +84,9 @@ static const struct ao_driver * const audio_out_drivers[] = { #endif #if HAVE_SDL1 || HAVE_SDL2 &audio_out_sdl, +#endif +#if HAVE_SNDIO + &audio_out_sndio, #endif &audio_out_null, // should not be auto-selected: -- cgit v1.2.3