[FFmpeg-cvslog] swr: reorder the operations in the noise shaping code
Michael Niedermayer
git at videolan.org
Thu Jan 10 02:02:54 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Jan 10 00:27:04 2013 +0100| [0b60fc94aab63b80b3a898c744da50758215bc9c] | committer: Michael Niedermayer
swr: reorder the operations in the noise shaping code
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0b60fc94aab63b80b3a898c744da50758215bc9c
---
libswresample/dither.c | 1 +
libswresample/dither_template.c | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/libswresample/dither.c b/libswresample/dither.c
index c3bb560..66bf184 100644
--- a/libswresample/dither.c
+++ b/libswresample/dither.c
@@ -118,6 +118,7 @@ int swri_dither_init(SwrContext *s, enum AVSampleFormat out_fmt, enum AVSampleFo
if (s->dither.method > SWR_DITHER_NS) {
s->dither.noise.bps = 4;
s->dither.noise.fmt = AV_SAMPLE_FMT_FLTP;
+ s->dither.noise_scale = 1;
}
return 0;
diff --git a/libswresample/dither_template.c b/libswresample/dither_template.c
index ffa5bdd..3388aad 100644
--- a/libswresample/dither_template.c
+++ b/libswresample/dither_template.c
@@ -34,12 +34,13 @@ void RENAME(swri_noise_shaping)(SwrContext *s, AudioData *srcs, AudioData *noise
DELEM *data = (DELEM*)srcs->ch[ch];
pos = s->dither.ns_pos;
for (i=0; i<count; i++) {
- double d1, d = data[i];
+ double d1, d = data[i]*S_1;
for(j=0; j<taps; j++)
d -= s->dither.ns_coeffs[j] * s->dither.ns_errors[ch][pos + j];
pos = pos ? pos - 1 : pos - 1 + taps;
- d1 = rint((d + noise[i]) * S_1)*S;
+ d1 = rint(d + noise[i]);
s->dither.ns_errors[ch][pos + taps] = s->dither.ns_errors[ch][pos] = d1 - d;
+ d1 *= S;
CLIP(d1);
data[i] = d1;
}
More information about the ffmpeg-cvslog
mailing list