From a494792961a08f9f0e47e7eeed65e609178ff436 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 24 Oct 2012 01:22:56 +0200 Subject: yuv2rgb: fix integer overflow in fill_table Fixes CID703748 Signed-off-by: Michael Niedermayer --- libswscale/yuv2rgb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libswscale/yuv2rgb.c') diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 18afc5b6bc..23c5f6dc48 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -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; -- cgit v1.2.3