diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-01 02:38:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-01 02:38:56 +0200 |
commit | a538e0f9a0c8f0bc2d4da99944997f6c0dcca503 (patch) | |
tree | f23416b7ef2a15c40e636227855d44a77cd0ae06 /libavcodec/vc1.c | |
parent | f5bda9fcbb54c9c27503ab1bdb86838eb6f602f1 (diff) | |
download | ffmpeg-a538e0f9a0c8f0bc2d4da99944997f6c0dcca503.tar.gz |
vc1: loose one line difference to qatar.
This should make no functional difference.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 268ceb3c82..3b3e20e9d3 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -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; |