mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 03:09:51 +00:00
update libswscale/swscale.c.
fix ffmpeg bug Signed-off-by: ziyugao <gaoziyu0614@outlook.com>
This commit is contained in:
parent
a44298dd8a
commit
9740add317
@ -222,7 +222,7 @@ static void lumRangeFromJpeg16_c(int16_t *_dst, int width)
|
||||
int i;
|
||||
int32_t *dst = (int32_t *) _dst;
|
||||
for (i = 0; i < width; i++)
|
||||
dst[i] = (dst[i]*(14071/4) + (33561947<<4)/4)>>12;
|
||||
dst[i] = ((int)(dst[i]*(14071U/4) + (33561947<<4)/4)) >> 12;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user