提交 8443462e 编写于 作者: P Paul B Mahol

avfilter/af_afir: remove unused variable

上级 8dd9df9e
......@@ -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));
......
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册