mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
check mb_y
Originally committed as revision 4401 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
43c0040a65
commit
6b53b87e20
@ -4241,6 +4241,9 @@ static int decode_slice_header(H264Context *h){
|
||||
|
||||
s->resync_mb_x = s->mb_x = first_mb_in_slice % s->mb_width;
|
||||
s->resync_mb_y = s->mb_y = first_mb_in_slice / s->mb_width;
|
||||
if(s->mb_y >= s->mb_height){
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(s->picture_structure==PICT_FRAME){
|
||||
h->curr_pic_num= h->frame_num;
|
||||
|
Loading…
Reference in New Issue
Block a user