http://bugs.winehq.org/show_bug.cgi?id=21655
Raymond superquad.vortex2@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |superquad.vortex2@gmail.com
--- Comment #1 from Raymond superquad.vortex2@gmail.com 2010-09-16 02:42:34 CDT --- Do your sound card support 11025 Hz, 22050 Hz and 44100 Hz ?
if your card is HDA-intel , you can find the supported rate in [Audio Output]
cat /proc/asound/card0/codec#0
I guess is the patch which disable the resampling if your sound card does not support the requested rate
#if SND_LIB_VERSION >= 0x010009 - snd_pcm_hw_params_set_rate_resample(pcm, hw_params, 0 && forced); + snd_pcm_hw_params_set_rate_resample(pcm, hw_params, 0);
#endif