[FFmpeg-cvslog] yuv2rgb: fix integer overflow in fill_gv_table()
    Michael Niedermayer 
    git at videolan.org
       
    Wed Oct 24 01:57:22 CEST 2012
    
    
  
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Oct 24 01:24:26 2012 +0200| [cccb45751e93142d71be78f6bb90bbfb50ee13be] | committer: Michael Niedermayer
yuv2rgb: fix integer overflow in fill_gv_table()
Fixes CID703747
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cccb45751e93142d71be78f6bb90bbfb50ee13be
---
 libswscale/yuv2rgb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c
index 23c5f6d..53b69d0 100644
--- a/libswscale/yuv2rgb.c
+++ b/libswscale/yuv2rgb.c
@@ -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);
    
    
More information about the ffmpeg-cvslog
mailing list