summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-06-04 21:38:28 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-06-04 21:50:45 (GMT)
commit495bf1b68574a27536dcf2e06bad3cf72a84f7ba (patch)
tree3142e0067fd903c59a6ffd40d9adfddf27de7364
parent4cfc92081dfe9dfd14045b99b60e531b4f2cf6e7 (diff)
downloadffmpeg-495bf1b68574a27536dcf2e06bad3cf72a84f7ba.zip
ffmpeg-495bf1b68574a27536dcf2e06bad3cf72a84f7ba.tar.gz
ffmpeg-495bf1b68574a27536dcf2e06bad3cf72a84f7ba.tar.bz2
swr: Fix dithering of s16 with SIMD
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-rw-r--r--libswresample/swresample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index 9b71b2e..49987c7 100644
--- a/libswresample/swresample.c
+++ b/libswresample/swresample.c
@@ -708,7 +708,7 @@ static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_co
if(len1)
for(ch=0; ch<preout->ch_count; ch++)
- s->mix_2_1_simd(conv_src->ch[ch], preout->ch[ch], s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos, s->native_one, 0, 0, len1);
+ s->mix_2_1_simd(conv_src->ch[ch], preout->ch[ch], s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos, s->native_simd_one, 0, 0, len1);
if(out_count != len1)
for(ch=0; ch<preout->ch_count; ch++)
s->mix_2_1_f(conv_src->ch[ch] + off, preout->ch[ch] + off, s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos + off + len1, s->native_one, 0, 0, out_count - len1);