Commit df820af2 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/error_resilience: Improve missing slice handling for mpeg2

Fixes: m702_2.avi
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent ce2f9fdb
......@@ -884,7 +884,7 @@ void ff_er_frame_end(ERContext *s)
if ( mb_x == s->mb_width
&& s->avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO
&& (s->avctx->height&16)
&& (FFALIGN(s->avctx->height, 16)&16)
&& s->error_count == 3 * s->mb_width * (s->avctx->skip_top + s->avctx->skip_bottom + 1)
) {
av_log(s->avctx, AV_LOG_DEBUG, "ignoring last missing slice\n");
......
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