Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-09-03 21:42:04 +0300
committerPaul B Mahol <onemda@gmail.com>2017-09-03 21:42:04 +0300
commitf3c0f34f53c26b800aae0d4e63608b065d73f4ec (patch)
tree9ed810dfef0a9a87cd0a52612a40d931be34dcb7 /libavfilter/vf_datascope.c
parent8b193e553055f7c89f6a8263ebdc2e6756af7fb1 (diff)
avfilter/vf_datascope: add timeline support to pixscope and oscilloscope
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_datascope.c')
-rw-r--r--libavfilter/vf_datascope.c2
1 files changed, 2 insertions, 0 deletions
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,
};