0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

ao_wasapi: Make default on Windows.

Ahead of OSS because cygwin provides OSS.
This commit is contained in:
Diogo Franco (Kovensky) 2013-07-19 23:42:58 -03:00 committed by wm4
parent 1b2dc3613f
commit 58338f9240

View File

@ -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