Commit c3d82285 authored by James Almer's avatar James Almer

avcodec/lossless_videodsp: fix output of add_hfyu_left_pred_int16_c()

It is now bitexact with the ssse3 and sse4.1 versions of the function.
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent e7fbd701
......@@ -100,15 +100,15 @@ static int add_hfyu_left_pred_int16_c(uint16_t *dst, const uint16_t *src, unsign
for(i=0; i<w-1; i++){
acc+= src[i];
dst[i]= acc & mask;
dst[i]= acc &= mask;
i++;
acc+= src[i];
dst[i]= acc & mask;
dst[i]= acc &= mask;
}
for(; i<w; i++){
acc+= src[i];
dst[i]= acc & mask;
dst[i]= acc &= mask;
}
return acc;
......
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