diff --git a/libswresample/dither_template.c b/libswresample/dither_template.c index 992a2ac629..88d3260fc5 100644 --- a/libswresample/dither_template.c +++ b/libswresample/dither_template.c @@ -33,14 +33,15 @@ void RENAME(swri_noise_shaping)(SwrContext *s, AudioData *dsts, const AudioData const float *noise = ((const float *)noises->ch[ch]) + s->dither.noise_pos; const DELEM *src = (const DELEM*)srcs->ch[ch]; DELEM *dst = (DELEM*)dsts->ch[ch]; + float *ns_errors = s->dither.ns_errors[ch]; pos = s->dither.ns_pos; for (i=0; idither.ns_coeffs[j] * s->dither.ns_errors[ch][pos + j]; + d -= s->dither.ns_coeffs[j] * ns_errors[pos + j]; pos = pos ? pos - 1 : taps - 1; d1 = rint(d + noise[i]); - s->dither.ns_errors[ch][pos + taps] = s->dither.ns_errors[ch][pos] = d1 - d; + ns_errors[pos + taps] = ns_errors[pos] = d1 - d; d1 *= S; CLIP(d1); dst[i] = d1;