Browse code

swscale: increase yuv2rgb table headroom

Fixes out of array access
Fixes: case2_bad_read_yuv2rgbx32.mp4
Found-by: Michal Zalewski <lcamtuf@coredump.cx>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2014/12/17 06:21:21
Showing 1 changed files
... ...
@@ -37,7 +37,7 @@
37 37
 
38 38
 #define STR(s) AV_TOSTRING(s) // AV_STRINGIFY is too long
39 39
 
40
-#define YUVRGB_TABLE_HEADROOM 128
40
+#define YUVRGB_TABLE_HEADROOM 256
41 41
 
42 42
 #define MAX_FILTER_SIZE 256
43 43