mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
avfilter/af_aiir: Remove dead code
Fixes Coverity issue #1468252. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
996e0a57ca
commit
37cc648fbd
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user