mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
yuv2rgb: fix integer overflow in fill_gv_table()
Fixes CID703747 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a494792961
commit
cccb45751e
1 changed files with 1 additions and 1 deletions
|
|
@ -680,7 +680,7 @@ static void fill_table(uint8_t* table[256 + 2*YUVRGB_TABLE_HEADROOM], const int
|
|||
}
|
||||
}
|
||||
|
||||
static void fill_gv_table(int table[256 + 2*YUVRGB_TABLE_HEADROOM], const int elemsize, const int inc)
|
||||
static void fill_gv_table(int table[256 + 2*YUVRGB_TABLE_HEADROOM], const int elemsize, const int64_t inc)
|
||||
{
|
||||
int i;
|
||||
int off = -(inc >> 9);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue