Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-09-20 01:06:15 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-09-20 21:05:51 +0400
commitb9acca288e996ae0a9ecf84eec0a2ddadc4201f1 (patch)
treea06e813d9761038f6723e139f07de2b79f900b9a /libavcodec/proresdec.c
parentc928e9172928f3cddab949b107dd53b6bf79555e (diff)
Remove unused variable.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/proresdec.c')
-rw-r--r--libavcodec/proresdec.c2
1 files changed, 1 insertions, 1 deletions
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);