summaryrefslogtreecommitdiff
path: root/libavcodec/imc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-12-01 15:22:05 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-12-03 16:09:14 +0100
commit01d158d1c8295474fa2034612487b36a47adfd1d (patch)
treebcf43db50fc4b551283187b943e0fb7b50bb1685 /libavcodec/imc.c
parenta4798a5d5109cd9c1b5682efe19660e825da97e6 (diff)
all: Remove unused-but-set variables
Newer versions of Clang detect this and emit warnings for it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/imc.c')
-rw-r--r--libavcodec/imc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c
index cbe3edeeec..116c273ba0 100644
--- a/libavcodec/imc.c
+++ b/libavcodec/imc.c
@@ -829,7 +829,7 @@ static void imc_get_coeffs(AVCodecContext *avctx,
static void imc_refine_bit_allocation(IMCContext *q, IMCChannel *chctx)
{
int i, j;
- int bits, summer;
+ int summer;
for (i = 0; i < BANDS; i++) {
chctx->sumLenArr[i] = 0;
@@ -853,7 +853,7 @@ static void imc_refine_bit_allocation(IMCContext *q, IMCChannel *chctx)
}
/* calculate bits left, bits needed and adjust bit allocation */
- bits = summer = 0;
+ summer = 0;
for (i = 0; i < BANDS; i++) {
if (chctx->bandFlagsBuf[i]) {
@@ -863,7 +863,6 @@ static void imc_refine_bit_allocation(IMCContext *q, IMCChannel *chctx)
chctx->CWlengthT[j] = 0;
}
}
- bits += chctx->skipFlagBits[i];
summer -= chctx->skipFlagBits[i];
}
}