Commit 3696d2bb authored by Michael Niedermayer's avatar Michael Niedermayer

block_last_index was too large (in mpeg1 decoding)

Originally committed as revision 301 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b4dbd87c
......@@ -948,7 +948,7 @@ static int mpeg1_decode_block(MpegEncContext *s,
block[j] = level;
i++;
}
s->block_last_index[n] = i;
s->block_last_index[n] = i-1;
return 0;
}
......
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