Commit accde1bd authored by Masaki Tanaka's avatar Masaki Tanaka Committed by Anton Khirnov

vc1_parser: Set field_order.

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent f43c14d0
......@@ -88,6 +88,11 @@ static void vc1_extract_headers(AVCodecParserContext *s, AVCodecContext *avctx,
}
}
if (vpc->v.broadcast && vpc->v.interlace && !vpc->v.psf)
s->field_order = vpc->v.tff ? AV_FIELD_TT : AV_FIELD_BB;
else
s->field_order = AV_FIELD_PROGRESSIVE;
break;
}
}
......
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