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:
Diffstat (limited to 'libavfilter/vf_identity.c')
-rw-r--r--libavfilter/vf_identity.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavfilter/vf_identity.c b/libavfilter/vf_identity.c
index 5096bda382..cc30761388 100644
--- a/libavfilter/vf_identity.c
+++ b/libavfilter/vf_identity.c
@@ -412,7 +412,9 @@ const AVFilter ff_vf_identity = {
FILTER_INPUTS(identity_inputs),
FILTER_OUTPUTS(identity_outputs),
FILTER_PIXFMTS_ARRAY(pix_fmts),
- .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
+ .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL |
+ AVFILTER_FLAG_SLICE_THREADS |
+ AVFILTER_FLAG_METADATA_ONLY,
};
#endif /* CONFIG_IDENTITY_FILTER */
@@ -434,7 +436,9 @@ const AVFilter ff_vf_msad = {
FILTER_INPUTS(identity_inputs),
FILTER_OUTPUTS(identity_outputs),
FILTER_PIXFMTS_ARRAY(pix_fmts),
- .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
+ .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL |
+ AVFILTER_FLAG_SLICE_THREADS |
+ AVFILTER_FLAG_METADATA_ONLY,
};
#endif /* CONFIG_MSAD_FILTER */