[FFmpeg-cvslog] avfilter/af_stereotools: add timeline support

Paul B Mahol git at videolan.org
Fri Dec 4 16:42:21 EET 2020


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Dec  4 15:22:06 2020 +0100| [eebf19ccd8845f472c79a66542e8cace0c95d230] | committer: Paul B Mahol

avfilter/af_stereotools: add timeline support

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eebf19ccd8845f472c79a66542e8cace0c95d230
---

 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,
 };



More information about the ffmpeg-cvslog mailing list