diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-04-27 17:18:22 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-04-27 17:18:22 +0200 |
commit | 309fce63d8c81d6c76af0db3ddf4ca495aca45f4 (patch) | |
tree | e886934bad50e2d2cde135dd0c7cde75194fc752 /libavfilter | |
parent | 2d7ba3a96f500cbda3e3eb209c33b3cb5fb16ef0 (diff) | |
download | ffmpeg-309fce63d8c81d6c76af0db3ddf4ca495aca45f4.tar.gz |
avfilter/vf_shuffleplanes: add support for timeline
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_shuffleplanes.c | 3 |
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, }; |