mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/f_perms: add timeline support
This commit is contained in:
parent
f41de0436c
commit
18befac5da
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue