Browse Source

avfilter/af_afir: remove redundant code

tags/n4.2
Paul B Mahol 7 years ago
parent
commit
fcbde5e6a4
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      libavfilter/af_afir.c

+ 1
- 4
libavfilter/af_afir.c View File

@@ -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;


Loading…
Cancel
Save