summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-11-17 14:06:42 +0100
committerwm4 <wm4@nowhere>2014-11-17 14:07:11 +0100
commit8b2798cb3e956b3333b187b3e2b2be2be581b39f (patch)
treed9fe6409c4b18393a25c0ec13ca557eb927747e7 /audio/out/ao.c
parent313f1954c527e4ff45dbc37a567b2d18d0a6c65b (diff)
downloadmpv-8b2798cb3e956b3333b187b3e2b2be2be581b39f.tar.bz2
mpv-8b2798cb3e956b3333b187b3e2b2be2be581b39f.tar.xz
audio/out: switch back to wasapi as default on win32
dsound was set as default, because there were some hard to fix problems with wasapi. These problems were probably fixed now, so let's try with wasapi as default again.
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 b92a78ff26..4a09ec0615 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -64,12 +64,12 @@ 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_DSOUND
+ &audio_out_dsound,
+#endif
#if HAVE_OSS_AUDIO
&audio_out_oss,
#endif