1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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

View File

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