From b9acca288e996ae0a9ecf84eec0a2ddadc4201f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Mon, 19 Sep 2011 23:06:15 +0200 Subject: [PATCH] Remove unused variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reimar Döffinger --- libavcodec/proresdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/proresdec.c b/libavcodec/proresdec.c index c56b258b71..810d523682 100644 --- a/libavcodec/proresdec.c +++ b/libavcodec/proresdec.c @@ -322,7 +322,7 @@ static av_always_inline void decode_dc_coeffs(GetBitContext *gb, DCTELEM *out, int blocks_per_slice, const int *qmat) { DCTELEM prev_dc; - int code, code2, i, sign; + int code, i, sign; OPEN_READER(re, gb);