Commit a0fbc28c authored by Michael Niedermayer's avatar Michael Niedermayer

vc1dec: Fix non pullup tff

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8ebfd7c4
......@@ -900,6 +900,8 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
v->tff = get_bits1(gb);
v->rff = get_bits1(gb);
}
} else {
v->tff = 1;
}
if (v->panscanflag) {
avpriv_report_missing_feature(v->s.avctx, "Pan-scan");
......
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