diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-24 09:37:41 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-31 14:18:33 +0200 |
commit | 37cc648fbd9e6d3dc61e8ac487774d330131c70f (patch) | |
tree | e057a2674a313c2d547e3f2b2afc967d2d5f1927 | |
parent | 996e0a57cad35d6ec5c6eef845628e7c8be240e0 (diff) | |
download | ffmpeg-37cc648fbd9e6d3dc61e8ac487774d330131c70f.tar.gz |
avfilter/af_aiir: Remove dead code
Fixes Coverity issue #1468252.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/af_aiir.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavfilter/af_aiir.c b/libavfilter/af_aiir.c index b5e5b41db6..324fc367a3 100644 --- a/libavfilter/af_aiir.c +++ b/libavfilter/af_aiir.c @@ -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; |