diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-08-28 14:22:43 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-09 13:45:20 +0200 |
commit | 709fca0a9415ea97cd1d49d67298b8c8728a7aec (patch) | |
tree | 6878ff70b2899af13d202f36fadd1486a1d3cd2b /libavfilter/af_headphone.c | |
parent | e2d4a5807fa5914185dc6f3ae0a4d63cd8fe3b29 (diff) | |
download | ffmpeg-709fca0a9415ea97cd1d49d67298b8c8728a7aec.tar.gz |
avfilter/af_headphone: Remove always true check
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavfilter/af_headphone.c')
-rw-r--r-- | libavfilter/af_headphone.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/af_headphone.c b/libavfilter/af_headphone.c index e590d02eff..1024ff57b1 100644 --- a/libavfilter/af_headphone.c +++ b/libavfilter/af_headphone.c @@ -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++) { |