avfilter: Constify all AVFilters

This is possible now that the next-API is gone.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2021-04-19 18:33:56 +02:00
committed by James Almer
parent 85ba17f36d
commit a04ad248a0
388 changed files with 967 additions and 967 deletions
+3 -3
View File
@@ -409,7 +409,7 @@ static const AVFilterPad outputs[] = {
#define hstack_options stack_options
AVFILTER_DEFINE_CLASS(hstack);
AVFilter ff_vf_hstack = {
const AVFilter ff_vf_hstack = {
.name = "hstack",
.description = NULL_IF_CONFIG_SMALL("Stack video inputs horizontally."),
.priv_size = sizeof(StackContext),
@@ -429,7 +429,7 @@ AVFilter ff_vf_hstack = {
#define vstack_options stack_options
AVFILTER_DEFINE_CLASS(vstack);
AVFilter ff_vf_vstack = {
const AVFilter ff_vf_vstack = {
.name = "vstack",
.description = NULL_IF_CONFIG_SMALL("Stack video inputs vertically."),
.priv_size = sizeof(StackContext),
@@ -456,7 +456,7 @@ static const AVOption xstack_options[] = {
AVFILTER_DEFINE_CLASS(xstack);
AVFilter ff_vf_xstack = {
const AVFilter ff_vf_xstack = {
.name = "xstack",
.description = NULL_IF_CONFIG_SMALL("Stack video inputs into custom layout."),
.priv_size = sizeof(StackContext),