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>2018-04-27 18:18:22 +0300
committerPaul B Mahol <onemda@gmail.com>2018-04-27 18:18:22 +0300
commit309fce63d8c81d6c76af0db3ddf4ca495aca45f4 (patch)
treee886934bad50e2d2cde135dd0c7cde75194fc752 /libavfilter/vf_shuffleplanes.c
parent2d7ba3a96f500cbda3e3eb209c33b3cb5fb16ef0 (diff)
avfilter/vf_shuffleplanes: add support for timeline
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_shuffleplanes.c')
-rw-r--r--libavfilter/vf_shuffleplanes.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_shuffleplanes.c b/libavfilter/vf_shuffleplanes.c
index 32d2d585f3..5d1302db04 100644
--- a/libavfilter/vf_shuffleplanes.c
+++ b/libavfilter/vf_shuffleplanes.c
@@ -158,10 +158,9 @@ static const AVFilterPad shuffleplanes_outputs[] = {
AVFilter ff_vf_shuffleplanes = {
.name = "shuffleplanes",
.description = NULL_IF_CONFIG_SMALL("Shuffle video planes."),
-
.priv_size = sizeof(ShufflePlanesContext),
.priv_class = &shuffleplanes_class,
-
.inputs = shuffleplanes_inputs,
.outputs = shuffleplanes_outputs,
+ .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
};