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_mestimate.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavfilter/vf_mestimate.c') diff --git a/libavfilter/vf_mestimate.c b/libavfilter/vf_mestimate.c index d8bcfdde02..eff58f612e 100644 --- a/libavfilter/vf_mestimate.c +++ b/libavfilter/vf_mestimate.c @@ -363,6 +363,7 @@ const AVFilter ff_vf_mestimate = { .priv_size = sizeof(MEContext), .priv_class = &mestimate_class, .uninit = uninit, + .flags = AVFILTER_FLAG_METADATA_ONLY, FILTER_INPUTS(mestimate_inputs), FILTER_OUTPUTS(mestimate_outputs), FILTER_PIXFMTS_ARRAY(pix_fmts), -- cgit v1.2.3