diff options
author | wm4 <wm4@nowhere> | 2014-06-01 19:00:44 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-06-01 19:00:44 +0200 |
commit | b8cb86047106701d9c3bee63075c3664ad9bd936 (patch) | |
tree | e4381fc66a9c006a1e4697c61af8a8630cae613d /audio | |
parent | 556bb1cf138711153b4fe5a51f22372f717a0b1e (diff) |
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.c | 6 |
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 |