From a04ad248a05e7b613abe09b3bb067f555108d794 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 19 Apr 2021 18:33:56 +0200 Subject: avfilter: Constify all AVFilters This is possible now that the next-API is gone. Signed-off-by: Andreas Rheinhardt Signed-off-by: James Almer --- libavfilter/f_cue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/f_cue.c') diff --git a/libavfilter/f_cue.c b/libavfilter/f_cue.c index b48dfc9d49..03804f1667 100644 --- a/libavfilter/f_cue.c +++ b/libavfilter/f_cue.c @@ -114,7 +114,7 @@ static const AVFilterPad cue_outputs[] = { { NULL } }; -AVFilter ff_vf_cue = { +const AVFilter ff_vf_cue = { .name = "cue", .description = NULL_IF_CONFIG_SMALL("Delay filtering to match a cue."), .priv_size = sizeof(CueContext), @@ -145,7 +145,7 @@ static const AVFilterPad acue_outputs[] = { { NULL } }; -AVFilter ff_af_acue = { +const AVFilter ff_af_acue = { .name = "acue", .description = NULL_IF_CONFIG_SMALL("Delay filtering to match a cue."), .priv_size = sizeof(CueContext), -- cgit v1.2.3