Commit 4289b669 authored by Michael Niedermayer's avatar Michael Niedermayer

swr: replace /16 by >>4

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 359abb18
......@@ -175,7 +175,7 @@ int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len
//FIXME optimize common cases
if(ctx->simd_f && !ctx->ch_map){
off = len/16 * 16;
off = (len>>4)<<4;
av_assert1(off>=0);
av_assert1(off<=len);
if(off>0){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment