From a6a50f8d7529e680d6a48719412e0608e3803962 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 30 May 2023 02:35:48 +0200 Subject: [PATCH] avfilter/af_join: put all inputs to EOF on EOF Signed-off-by: Paul B Mahol --- libavfilter/af_join.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c index 5dbf9d8d22..ef47c7f2cb 100644 --- a/libavfilter/af_join.c +++ b/libavfilter/af_join.c @@ -564,6 +564,8 @@ eof: break; } } + for (i = 0; i < ctx->nb_inputs; i++) + ff_inlink_set_status(ctx->inputs[i], AVERROR_EOF); return 0; } -- 2.39.1