You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
fixing slices which start at mb_x>0
Originally committed as revision 840 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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)){
|
||||
|
Reference in New Issue
Block a user