avfilter/af_aiir: Remove dead code

Fixes Coverity issue #1468252.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-05-24 09:37:41 +02:00
parent 996e0a57ca
commit 37cc648fbd

View File

@ -820,7 +820,6 @@ static void solve(double *matrix, double *vector, int n, double *y, double *x, d
static int convert_serial2parallel(AVFilterContext *ctx, int channels)
{
AudioIIRContext *s = ctx->priv;
int ret = 0;
for (int ch = 0; ch < channels; ch++) {
IIRChannel *iir = &s->iir[ch];
@ -879,9 +878,6 @@ static int convert_serial2parallel(AVFilterContext *ctx, int channels)
av_free(resp);
av_free(M);
av_free(W);
if (ret < 0)
return ret;
}
return 0;