From 13d97077eceb299f853f21ffd630bd87d87373fe Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 6 Feb 2013 22:23:58 +0100 Subject: audio/out: prefer ao_dsound over ao_portaudio On Linux, ao_portaudio has weird freezing issues (possibly specific to the ALSA backend, though). Also ao_dsound is more likely to get multi- channel audio output right, and ao_portaudio probably mangles these. --- audio/out/ao.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio') diff --git a/audio/out/ao.c b/audio/out/ao.c index 85e9548454..a0faafebfb 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -61,11 +61,11 @@ static const struct ao_driver * const audio_out_drivers[] = { #ifdef CONFIG_OSS_AUDIO &audio_out_oss, #endif -#ifdef CONFIG_PORTAUDIO - &audio_out_portaudio, -#endif #ifdef CONFIG_DSOUND &audio_out_dsound, +#endif +#ifdef CONFIG_PORTAUDIO + &audio_out_portaudio, #endif // wrappers: #ifdef CONFIG_JACK -- cgit v1.2.3