diff options
author | Chris Robinson <[email protected]> | 2010-02-08 16:38:53 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-02-08 16:38:53 -0800 |
commit | fc96e965ae3a4741f57abfd171ac9d3e7776ce9f (patch) | |
tree | 7d89ae35073f8c0b20be8cb5e665f496960ec91d /Alc/alsa.c | |
parent | 365a62d63ae0e9edae4a601ac8da6f0291740448 (diff) |
Always disable ALSA's resampler for playback
This means the frequency config option won't have an effect if the ALSA device
can't set an alternate sampling rate
Diffstat (limited to 'Alc/alsa.c')
-rw-r--r-- | Alc/alsa.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -617,8 +617,7 @@ static ALCboolean alsa_reset_playback(ALCdevice *device) err = "set channels"; } } - if(i >= 0 && !ConfigValueExists(NULL, "frequency") && - (i=psnd_pcm_hw_params_set_rate_resample(data->pcmHandle, p, 0)) < 0) + if(i >= 0 && (i=psnd_pcm_hw_params_set_rate_resample(data->pcmHandle, p, 0)) < 0) { AL_PRINT("Failed to disable ALSA resampler\n"); i = 0; |