From 0a6baf39cb426226ec23147f536ad9511336c64a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 4 Aug 2002 18:19:09 +0000 Subject: [PATCH] fixing slices which start at mb_x>0 Originally committed as revision 840 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg12.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 548e219..8939bb6 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -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)){ -- 2.7.4