avfilter/f_perms: add timeline support

This commit is contained in:
Paul B Mahol 2020-12-07 21:05:37 +01:00
parent f41de0436c
commit 18befac5da
1 changed files with 2 additions and 0 deletions

View File

@ -141,6 +141,7 @@ AVFilter ff_af_aperms = {
.inputs = aperms_inputs, .inputs = aperms_inputs,
.outputs = aperms_outputs, .outputs = aperms_outputs,
.priv_class = &aperms_class, .priv_class = &aperms_class,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
}; };
#endif /* CONFIG_APERMS_FILTER */ #endif /* CONFIG_APERMS_FILTER */
@ -174,5 +175,6 @@ AVFilter ff_vf_perms = {
.inputs = perms_inputs, .inputs = perms_inputs,
.outputs = perms_outputs, .outputs = perms_outputs,
.priv_class = &perms_class, .priv_class = &perms_class,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
}; };
#endif /* CONFIG_PERMS_FILTER */ #endif /* CONFIG_PERMS_FILTER */