From 99b6e68441ce49838ee424d2c3b659c92c01b368 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 27 Aug 2017 08:49:58 +0200 Subject: [PATCH] avfilter/af_amix: do not request samples if inlink reached EOF Signed-off-by: Paul B Mahol --- libavfilter/af_amix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavfilter/af_amix.c b/libavfilter/af_amix.c index d11edaaec9..09848e5d91 100644 --- a/libavfilter/af_amix.c +++ b/libavfilter/af_amix.c @@ -370,7 +370,8 @@ static int request_samples(AVFilterContext *ctx, int min_samples) av_assert0(s->nb_inputs > 1); for (i = 1; i < s->nb_inputs; i++) { - if (!(s->input_state[i] & INPUT_ON)) + if (!(s->input_state[i] & INPUT_ON) || + (s->input_state[i] & INPUT_EOF)) continue; if (av_audio_fifo_size(s->fifos[i]) >= min_samples) continue;