From 8443462e4a563430cb12615750339f9dc2c93a8e Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 26 Dec 2018 19:00:00 +0100 Subject: avfilter/af_afir: remove unused variable --- libavfilter/af_afir.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavfilter/af_afir.c') diff --git a/libavfilter/af_afir.c b/libavfilter/af_afir.c index 36fde60594..7f384ef8fe 100644 --- a/libavfilter/af_afir.c +++ b/libavfilter/af_afir.c @@ -306,7 +306,6 @@ static int convert_coeffs(AVFilterContext *ctx) s->block_size = FFALIGN(s->fft_length, 32); s->coeff_size = FFALIGN(s->part_size + 1, 32); s->nb_partitions = (s->nb_taps + s->part_size - 1) / s->part_size; - s->nb_coeffs = s->ir_length + s->nb_partitions; for (ch = 0; ch < ctx->inputs[0]->channels; ch++) { s->sum[ch] = av_calloc(s->fft_length, sizeof(**s->sum)); -- cgit v1.2.3