mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
10l (negative strides)
Originally committed as revision 3887 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0c040aacbe
commit
edaf11e87a
@ -2094,7 +2094,7 @@ static void render_fragments(Vp3DecodeContext *s,
|
||||
lower_motion_limit = height * s->current_frame.linesize[2] + width - 8;
|
||||
}
|
||||
|
||||
if((unsigned)stride > 2048)
|
||||
if(ABS(stride) > 2048)
|
||||
return; //various tables are fixed size
|
||||
|
||||
/* for each fragment row... */
|
||||
|
Loading…
Reference in New Issue
Block a user