summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-19 23:42:58 -0300
committerwm4 <wm4@nowhere>2013-07-22 02:42:38 +0200
commit58338f9240f459953fa647124dbffe75e0a79622 (patch)
tree08a2e070d6e599f6ffbaad4d97784070334f8532
parent1b2dc3613fb940033f3f9e2ee29df6bb3884ee2c (diff)
downloadmpv-58338f9240f459953fa647124dbffe75e0a79622.tar.bz2
mpv-58338f9240f459953fa647124dbffe75e0a79622.tar.xz
ao_wasapi: Make default on Windows.
Ahead of OSS because cygwin provides OSS.
-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 d6cebb2d0d..c7fd60a8f8 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -62,15 +62,15 @@ static const struct ao_driver * const audio_out_drivers[] = {
#ifdef CONFIG_ALSA
&audio_out_alsa,
#endif
+#ifdef CONFIG_WASAPI
+ &audio_out_wasapi,
+#endif
#ifdef CONFIG_OSS_AUDIO
&audio_out_oss,
#endif
#ifdef CONFIG_DSOUND
&audio_out_dsound,
#endif
-#ifdef CONFIG_WASAPI
- &audio_out_wasapi,
-#endif
#ifdef CONFIG_PORTAUDIO
&audio_out_portaudio,
#endif