summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-26 15:52:29 +0200
committerwm4 <wm4@nowhere>2014-09-26 15:52:29 +0200
commitd778130dc483f4f70f385ce60b690781fe556d75 (patch)
tree213ca045d6ddceff035d30a2a255f43c685cf17d /audio/out/ao.c
parent4784ca32c9d0fc79b08958c02dd3e826d5154d30 (diff)
downloadmpv-d778130dc483f4f70f385ce60b690781fe556d75.tar.bz2
mpv-d778130dc483f4f70f385ce60b690781fe556d75.tar.xz
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.
Diffstat (limited to 'audio/out/ao.c')
-rw-r--r--audio/out/ao.c6
1 files changed, 3 insertions, 3 deletions
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
@@ -88,6 +85,9 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_SDL1 || HAVE_SDL2
&audio_out_sdl,
#endif
+#if HAVE_SNDIO
+ &audio_out_sndio,
+#endif
&audio_out_null,
// should not be auto-selected:
&audio_out_pcm,