[FFmpeg-cvslog] avfilter/vf_datascope: add timeline support to pixscope and oscilloscope

Paul B Mahol git at videolan.org
Sun Sep 3 21:43:42 EEST 2017


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Sep  3 20:42:04 2017 +0200| [f3c0f34f53c26b800aae0d4e63608b065d73f4ec] | committer: Paul B Mahol

avfilter/vf_datascope: add timeline support to pixscope and oscilloscope

Signed-off-by: Paul B Mahol <onemda at gmail.com>

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

 libavfilter/vf_datascope.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_datascope.c b/libavfilter/vf_datascope.c
index 7a1dc4de01..a0482cdb75 100644
--- a/libavfilter/vf_datascope.c
+++ b/libavfilter/vf_datascope.c
@@ -646,6 +646,7 @@ AVFilter ff_vf_pixscope = {
     .query_formats = query_formats,
     .inputs        = pixscope_inputs,
     .outputs       = pixscope_outputs,
+    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
 };
 
 typedef struct PixelValues {
@@ -1027,4 +1028,5 @@ AVFilter ff_vf_oscilloscope = {
     .uninit        = oscilloscope_uninit,
     .inputs        = oscilloscope_inputs,
     .outputs       = oscilloscope_outputs,
+    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
 };



More information about the ffmpeg-cvslog mailing list