OSDN Git Service

vc1: loose one line difference to qatar.
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 1 Sep 2011 00:38:56 +0000 (02:38 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 1 Sep 2011 00:38:56 +0000 (02:38 +0200)
This should make no functional difference.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/vc1.c

index 268ceb3..3b3e20e 100644 (file)
@@ -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;