mirror of
https://github.com/encounter/SDL.git
synced 2025-12-09 13:37:56 +00:00
audio: fixed one more incorrectly-hardcoded value in the resamplers.
This commit is contained in:
@@ -283,11 +283,11 @@ SDL_Downsample_Arbitrary(SDL_AudioCVT *cvt, const int channels)
|
||||
SDL_memcpy(last_sample, src, cpy);
|
||||
|
||||
while (dst < target) {
|
||||
src += 8;
|
||||
src += channels;
|
||||
eps += dstsize;
|
||||
if ((eps << 1) >= srcsize) {
|
||||
SDL_memcpy(dst, sample, cpy);
|
||||
dst += 8;
|
||||
dst += channels;
|
||||
for (i = 0; i < channels; i++) {
|
||||
sample[i] = (float) ((((double) src[i]) + ((double) last_sample[i])) * 0.5);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user