Commit fcbde5e6 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_afir: remove redundant code

parent 0c6d4e7b
......@@ -503,11 +503,8 @@ static int activate(AVFilterContext *ctx)
ret = ff_inlink_consume_samples(ctx->inputs[0], s->part_size, s->part_size, &in);
}
if (ret > 0) {
if (ret > 0)
ret = fir_frame(s, in, outlink);
if (ret < 0)
return ret;
}
if (ret < 0)
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment