From 309fce63d8c81d6c76af0db3ddf4ca495aca45f4 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 27 Apr 2018 17:18:22 +0200 Subject: [PATCH] avfilter/vf_shuffleplanes: add support for timeline Signed-off-by: Paul B Mahol --- libavfilter/vf_shuffleplanes.c | 3 +-- 1 file changed, 1 insertion(+), 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, };