From eebf19ccd8845f472c79a66542e8cace0c95d230 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 4 Dec 2020 15:22:06 +0100 Subject: [PATCH] avfilter/af_stereotools: add timeline support --- libavfilter/af_stereotools.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_stereotools.c b/libavfilter/af_stereotools.c index 94e9b150dd..59ed44872e 100644 --- a/libavfilter/af_stereotools.c +++ b/libavfilter/af_stereotools.c @@ -327,8 +327,13 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) L *= level_out; R *= level_out; - dst[0] = L; - dst[1] = R; + if (ctx->is_disabled) { + dst[0] = src[0]; + dst[1] = src[1]; + } else { + dst[0] = L; + dst[1] = R; + } } if (out != in) @@ -370,4 +375,5 @@ AVFilter ff_af_stereotools = { .uninit = uninit, .inputs = inputs, .outputs = outputs, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL, };