You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
swr: use SIMD for dithering
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -651,9 +651,20 @@ static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_co
|
|||||||
if(s->dither_pos + out_count > s->dither.count)
|
if(s->dither_pos + out_count > s->dither.count)
|
||||||
s->dither_pos = 0;
|
s->dither_pos = 0;
|
||||||
|
|
||||||
|
if (s->mix_2_1_simd) {
|
||||||
|
int len1= out_count&~15;
|
||||||
|
int off = len1 * preout->bps;
|
||||||
|
|
||||||
|
if(len1)
|
||||||
|
for(ch=0; ch<preout->ch_count; ch++)
|
||||||
|
s->mix_2_1_simd(preout->ch[ch], preout->ch[ch], s->dither.ch[ch] + s->dither.bps * s->dither_pos, s->native_one, 0, 0, len1);
|
||||||
|
if(out_count != len1)
|
||||||
|
for(ch=0; ch<preout->ch_count; ch++)
|
||||||
|
s->mix_2_1_f(preout->ch[ch] + off, preout->ch[ch] + off, s->dither.ch[ch] + s->dither.bps * s->dither_pos + off + len1, s->native_one, 0, 0, out_count - len1);
|
||||||
|
} else {
|
||||||
for(ch=0; ch<preout->ch_count; ch++)
|
for(ch=0; ch<preout->ch_count; ch++)
|
||||||
s->mix_2_1_f(preout->ch[ch], preout->ch[ch], s->dither.ch[ch] + s->dither.bps * s->dither_pos, s->native_one, 0, 0, out_count);
|
s->mix_2_1_f(preout->ch[ch], preout->ch[ch], s->dither.ch[ch] + s->dither.bps * s->dither_pos, s->native_one, 0, 0, out_count);
|
||||||
|
}
|
||||||
s->dither_pos += out_count;
|
s->dither_pos += out_count;
|
||||||
}
|
}
|
||||||
//FIXME packed doesnt need more than 1 chan here!
|
//FIXME packed doesnt need more than 1 chan here!
|
||||||
|
Reference in New Issue
Block a user