Commit cb22692f authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'fe06795d'

* commit 'fe06795d':
  vc1: implement frame interlaced b-frame header parsing

Conflicts:
	libavcodec/vc1.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents b602e47f fe06795d
......@@ -1249,7 +1249,8 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
} else if (v->fcm == ILACE_FRAME) {
if (v->extended_dmv)
v->dmvrange = get_unary(gb, 0, 3);
get_bits1(gb); /* intcomp - present but shall always be 0 */
if (get_bits1(gb)) /* intcomp - present but shall always be 0 */
av_log(v->s.avctx, AV_LOG_WARNING, "Intensity compensation set for B picture\n");
v->intcomp = 0;
v->mv_mode = MV_PMODE_1MV;
v->fourmvswitch = 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