avfilter/af_headphone: Remove always true check

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2020-08-28 14:22:43 +02:00
parent e2d4a5807f
commit 709fca0a94
1 changed files with 0 additions and 2 deletions

View File

@ -631,10 +631,8 @@ static int activate(AVFilterContext *ctx)
if ((ret = check_ir(ctx->inputs[i], i)) < 0)
return ret;
if (!s->in[i].eof) {
if (ff_outlink_get_status(ctx->inputs[i]) == AVERROR_EOF)
s->in[i].eof = 1;
}
}
for (i = 1; i < s->nb_inputs; i++) {