Commit 0a6baf39 authored by Michael Niedermayer's avatar Michael Niedermayer

fixing slices which start at mb_x>0

Originally committed as revision 840 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 55078332
......@@ -672,6 +672,12 @@ static int mpeg_decode_mb(MpegEncContext *s,
}
}
}
if(s->mb_x==-1 /* first MB in a slice */ && s->mb_incr>1){
s->mb_x+= (s->mb_incr - 1) % s->mb_width;
s->mb_y+= (s->mb_incr - 1) / s->mb_width;
s->mb_incr= 1;
}
if (++s->mb_x >= s->mb_width) {
s->mb_x = 0;
if (s->mb_y >= (s->mb_height - 1)){
......
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