summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-01 19:00:44 +0200
committerwm4 <wm4@nowhere>2014-06-01 19:00:44 +0200
commitb8cb86047106701d9c3bee63075c3664ad9bd936 (patch)
treee4381fc66a9c006a1e4697c61af8a8630cae613d /audio
parent556bb1cf138711153b4fe5a51f22372f717a0b1e (diff)
downloadmpv-b8cb86047106701d9c3bee63075c3664ad9bd936.tar.bz2
mpv-b8cb86047106701d9c3bee63075c3664ad9bd936.tar.xz
audio: prefer dsound over wasapi
ao_wasapi has too many subtle failures that were reported, but there's nobody to fix them. ao_dsound seems to be more robust; so prefer it.
Diffstat (limited to 'audio')
-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 358762b73c..378197bcb3 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -66,15 +66,15 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_ALSA
&audio_out_alsa,
#endif
+#if HAVE_DSOUND
+ &audio_out_dsound,
+#endif
#if HAVE_WASAPI
&audio_out_wasapi,
#endif
#if HAVE_OSS_AUDIO
&audio_out_oss,
#endif
-#if HAVE_DSOUND
- &audio_out_dsound,
-#endif
#if HAVE_PORTAUDIO
&audio_out_portaudio,
#endif