# HG changeset patch # User cladisch # Date 1142247037 0 # Node ID ebebe97331af303b8318f27e71aa92a814380c05 # Parent 4e32c2caf6965b3a5d922a06e8919dbd4ba198a5 To avoid a bug in ALSA's rate plugin that causes spurious overruns, try to disable it so that mplayer's resampler is used. diff -r 4e32c2caf696 -r ebebe97331af libao2/ao_alsa.c --- a/libao2/ao_alsa.c Mon Mar 13 10:49:12 2006 +0000 +++ b/libao2/ao_alsa.c Mon Mar 13 10:50:37 2006 +0000 @@ -533,6 +533,18 @@ return(0); } + /* workaround for buggy rate plugin (should be fixed in ALSA 1.0.11) + prefer our own resampler */ +#if SND_LIB_VERSION >= 0x010009 + if ((err = snd_pcm_hw_params_set_rate_resample(alsa_handler, alsa_hwparams, + 0)) < 0) + { + mp_msg(MSGT_AO,MSGL_ERR,"alsa-init: unable to disable resampling: %s\n", + snd_strerror(err)); + return(0); + } +#endif + if ((err = snd_pcm_hw_params_set_rate_near(alsa_handler, alsa_hwparams, &ao_data.samplerate, NULL)) < 0) {