mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-09 16:50:01 +00:00
swscale/output: Fix integer overflow in alpha computation in yuv2gbrp16_full_X_c()
Fixes: signed integer overflow: 524280 * 4432 cannot be represented in type 'int'
Fixes: ticket8322
Found-by: Suhwan
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 49ba1879ad
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
83b2cc152d
commit
824c773263
@ -2275,7 +2275,7 @@ yuv2gbrp16_full_X_c(SwsContext *c, const int16_t *lumFilter,
|
|||||||
A = -0x40000000;
|
A = -0x40000000;
|
||||||
|
|
||||||
for (j = 0; j < lumFilterSize; j++)
|
for (j = 0; j < lumFilterSize; j++)
|
||||||
A += alpSrc[j][i] * lumFilter[j];
|
A += alpSrc[j][i] * (unsigned)lumFilter[j];
|
||||||
|
|
||||||
A >>= 1;
|
A >>= 1;
|
||||||
A += 0x20002000;
|
A += 0x20002000;
|
||||||
|
Loading…
Reference in New Issue
Block a user