summaryrefslogtreecommitdiff
path: root/libavfilter/vf_atadenoise.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-06-28 12:29:39 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-03 11:41:23 +0200
commit624d0cf428d42467ddd8b3399148d9858c3d1cd1 (patch)
treed60c5dc3ae9300366b62987f244f82a3293e85fd /libavfilter/vf_atadenoise.c
parent309ead7067ae7dd6d591b908a87e987713d6173b (diff)
downloadffmpeg-624d0cf428d42467ddd8b3399148d9858c3d1cd1.tar.gz
avfilter/vf_atadenoise: Remove unused-but-set variables
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_atadenoise.c')
-rw-r--r--libavfilter/vf_atadenoise.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/vf_atadenoise.c b/libavfilter/vf_atadenoise.c
index 54cde782f6..2178c62faf 100644
--- a/libavfilter/vf_atadenoise.c
+++ b/libavfilter/vf_atadenoise.c
@@ -154,7 +154,6 @@ static void fweight_row##name(const uint8_t *ssrc, uint8_t *ddst, \
unsigned ldiff, rdiff; \
float sum = srcx; \
float wsum = 1.f; \
- int l = 0, r = 0; \
int srcjx, srcix; \
\
for (int j = mid - 1, i = mid + 1; j >= 0 && i < size; j--, i++) { \
@@ -165,7 +164,6 @@ static void fweight_row##name(const uint8_t *ssrc, uint8_t *ddst, \
if (ldiff > thra || \
lsumdiff > thrb) \
break; \
- l++; \
sum += srcjx * weights[j]; \
wsum += weights[j]; \
\
@@ -176,7 +174,6 @@ static void fweight_row##name(const uint8_t *ssrc, uint8_t *ddst, \
if (rdiff > thra || \
rsumdiff > thrb) \
break; \
- r++; \
sum += srcix * weights[i]; \
wsum += weights[i]; \
} \
@@ -205,7 +202,6 @@ static void fweight_row##name##_serial(const uint8_t *ssrc, uint8_t *ddst, \
unsigned ldiff, rdiff; \
float sum = srcx; \
float wsum = 1.f; \
- int l = 0, r = 0; \
int srcjx, srcix; \
\
for (int j = mid - 1; j >= 0; j--) { \
@@ -216,7 +212,6 @@ static void fweight_row##name##_serial(const uint8_t *ssrc, uint8_t *ddst, \
if (ldiff > thra || \
lsumdiff > thrb) \
break; \
- l++; \
sum += srcjx * weights[j]; \
wsum += weights[j]; \
} \
@@ -229,7 +224,6 @@ static void fweight_row##name##_serial(const uint8_t *ssrc, uint8_t *ddst, \
if (rdiff > thra || \
rsumdiff > thrb) \
break; \
- r++; \
sum += srcix * weights[i]; \
wsum += weights[i]; \
} \