Commit b0660460 authored by Michael Niedermayer's avatar Michael Niedermayer

error_concealment: make sure mbaff flags are 0 as interlaced is not supported.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b7c2358f
......@@ -65,7 +65,8 @@ static void decode_mb(MpegEncContext *s, int ref)
fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
fill_rectangle(h->mv_cache[0][scan8[0]], 4, 4, 8,
pack16to32(s->mv[0][0][0], s->mv[0][0][1]), 4);
assert(!FRAME_MBAFF);
h->mb_mbaff =
h->mb_field_decoding_flag = 0;
ff_h264_hl_decode_mb(h);
} else {
assert(ref == 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