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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2022-03-18 13:29:12 +0300
committerPaul B Mahol <onemda@gmail.com>2022-03-19 12:55:35 +0300
commitf8dc89b34d2ccdb59747178475ea6910a11515c4 (patch)
tree45a0d8710fd9d9f17bffa33290f9af8fee224833 /libavfilter/af_afftdn.c
parent7ae2ded0d12bb36a82ee928c3a543a00aee4b466 (diff)
avfilter/af_afftdn: remove unused or set only variables
Diffstat (limited to 'libavfilter/af_afftdn.c')
-rw-r--r--libavfilter/af_afftdn.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/af_afftdn.c b/libavfilter/af_afftdn.c
index c66545ac2e..253526e532 100644
--- a/libavfilter/af_afftdn.c
+++ b/libavfilter/af_afftdn.c
@@ -117,12 +117,6 @@ typedef struct AudioFFTDeNoiseContext {
float band_multiplier;
float floor_offset;
- float last_residual_floor;
- float last_noise_floor;
- float last_noise_reduction;
- float last_noise_balance;
- int64_t block_count;
-
int channels;
int sample_noise;
int sample_noise_blocks;
@@ -1068,7 +1062,6 @@ static int output_frame(AVFilterLink *inlink, AVFrame *in)
s->sample_noise_mode = SAMPLE_NONE;
}
- s->block_count++;
ff_filter_execute(ctx, filter_channel, s->winframe, NULL,
FFMIN(outlink->ch_layout.nb_channels, ff_filter_get_nb_threads(ctx)));