mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-22 05:40:27 +08:00
rle_code can overflow when multiplied by 4
(fixes Animation-256Greys.mov from mphq) Originally committed as revision 2786 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -84,7 +84,7 @@ static void qtrle_decode_8bpp(QtrleContext *s)
|
||||
int header;
|
||||
int start_line;
|
||||
int lines_to_change;
|
||||
signed char rle_code;
|
||||
int rle_code;
|
||||
int row_ptr, pixel_ptr;
|
||||
int row_inc = s->frame.linesize[0];
|
||||
unsigned char pi1, pi2, pi3, pi4; /* 4 palette indices */
|
||||
|
||||
Reference in New Issue
Block a user