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_sidedata.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/f_sidedata.c') diff --git a/libavfilter/f_sidedata.c b/libavfilter/f_sidedata.c index 0542373ed8..9133fcb1e3 100644 --- a/libavfilter/f_sidedata.c +++ b/libavfilter/f_sidedata.c @@ -141,7 +141,7 @@ static const AVFilterPad aoutputs[] = { { NULL } }; -AVFilter ff_af_asidedata = { +const AVFilter ff_af_asidedata = { .name = "asidedata", .description = NULL_IF_CONFIG_SMALL("Manipulate audio frame side data."), .priv_size = sizeof(SideDataContext), @@ -175,7 +175,7 @@ static const AVFilterPad outputs[] = { { NULL } }; -AVFilter ff_vf_sidedata = { +const AVFilter ff_vf_sidedata = { .name = "sidedata", .description = NULL_IF_CONFIG_SMALL("Manipulate video frame side data."), .priv_size = sizeof(SideDataContext), -- cgit v1.2.3