From b9c928a486fda3c0d79b153591ac86beb1c53708 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 22 Nov 2021 14:39:11 +0100 Subject: avfilter: add AVFILTER_FLAG_METADATA_ONLY This flag allows distinguishing between filters that actually modify the data and those that only modify metadata or gather some stream information. --- libavfilter/vf_scdet.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavfilter/vf_scdet.c') diff --git a/libavfilter/vf_scdet.c b/libavfilter/vf_scdet.c index d11d2e2e2c..1576759c24 100644 --- a/libavfilter/vf_scdet.c +++ b/libavfilter/vf_scdet.c @@ -206,6 +206,7 @@ const AVFilter ff_vf_scdet = { .priv_size = sizeof(SCDetContext), .priv_class = &scdet_class, .uninit = uninit, + .flags = AVFILTER_FLAG_METADATA_ONLY, FILTER_INPUTS(scdet_inputs), FILTER_OUTPUTS(scdet_outputs), FILTER_PIXFMTS_ARRAY(pix_fmts), -- cgit v1.2.3