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

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.
This commit is contained in:
wm4 2013-02-06 22:23:58 +01:00
parent 7a6d26370c
commit 13d97077ec

View File

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