mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
yuv2rgb: fix integer overflow in fill_table
Fixes CID703748 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6c87b2be72
commit
a494792961
@ -667,7 +667,7 @@ SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c)
|
||||
}
|
||||
|
||||
static void fill_table(uint8_t* table[256 + 2*YUVRGB_TABLE_HEADROOM], const int elemsize,
|
||||
const int inc, void *y_tab)
|
||||
const int64_t inc, void *y_tab)
|
||||
{
|
||||
int i;
|
||||
uint8_t *y_table = y_tab;
|
||||
|
Loading…
Reference in New Issue
Block a user