Commit 6b53b87e authored by Michael Niedermayer's avatar Michael Niedermayer

check mb_y

Originally committed as revision 4401 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 43c0040a
...@@ -4241,6 +4241,9 @@ static int decode_slice_header(H264Context *h){ ...@@ -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_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; 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){ if(s->picture_structure==PICT_FRAME){
h->curr_pic_num= h->frame_num; h->curr_pic_num= h->frame_num;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment