Commit a538e0f9 authored by Michael Niedermayer's avatar Michael Niedermayer

vc1: loose one line difference to qatar.

This should make no functional difference.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f5bda9fc
......@@ -470,7 +470,7 @@ static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb)
}
v->s.max_b_frames = v->s.avctx->max_b_frames = 7;
if(get_bits1(gb)) { //Display Info - decoding is not affected by it
int dw, dh, ar = 0;
int w, h, ar = 0;
av_log(v->s.avctx, AV_LOG_DEBUG, "Display extended info:\n");
w = get_bits(gb, 14) + 1;
h = get_bits(gb, 14) + 1;
......
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