avfilter/af_afir: remove unused variable

This commit is contained in:
Paul B Mahol 2018-12-26 19:00:00 +01:00
parent 8dd9df9ecd
commit 8443462e4a
2 changed files with 0 additions and 4 deletions

View File

@ -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));

View File

@ -21,7 +21,6 @@
#ifndef AVFILTER_AFIR_H
#define AVFILTER_AFIR_H
#include "libavutil/audio_fifo.h"
#include "libavutil/common.h"
#include "libavutil/float_dsp.h"
#include "libavutil/opt.h"
@ -53,7 +52,6 @@ typedef struct AudioFIRContext {
int eof_coeffs;
int have_coeffs;
int nb_coeffs;
int nb_taps;
int part_size;
int part_index;
@ -72,7 +70,6 @@ typedef struct AudioFIRContext {
float **block;
FFTComplex **coeff;
AVAudioFifo *fifo;
AVFrame *in[2];
AVFrame *buffer;
AVFrame *video;