Commit f3c0f34f authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_datascope: add timeline support to pixscope and oscilloscope

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 8b193e55
...@@ -646,6 +646,7 @@ AVFilter ff_vf_pixscope = { ...@@ -646,6 +646,7 @@ AVFilter ff_vf_pixscope = {
.query_formats = query_formats, .query_formats = query_formats,
.inputs = pixscope_inputs, .inputs = pixscope_inputs,
.outputs = pixscope_outputs, .outputs = pixscope_outputs,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
}; };
typedef struct PixelValues { typedef struct PixelValues {
...@@ -1027,4 +1028,5 @@ AVFilter ff_vf_oscilloscope = { ...@@ -1027,4 +1028,5 @@ AVFilter ff_vf_oscilloscope = {
.uninit = oscilloscope_uninit, .uninit = oscilloscope_uninit,
.inputs = oscilloscope_inputs, .inputs = oscilloscope_inputs,
.outputs = oscilloscope_outputs, .outputs = oscilloscope_outputs,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment