From 652add3a6d675a568eb7564d85434712829b03d3 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 29 Jun 2023 20:15:36 +0200 Subject: [PATCH] avfilter/vf_ccrepack: Constify filter The discrepancy between the definition and the declaration in allfilters.c is actually UB. Reviewed-by: James Almer Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_ccrepack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_ccrepack.c b/libavfilter/vf_ccrepack.c index 61eb2128ae..950bb7b528 100644 --- a/libavfilter/vf_ccrepack.c +++ b/libavfilter/vf_ccrepack.c @@ -92,7 +92,7 @@ static const AVFilterPad avfilter_vf_ccrepack_outputs[] = { }, }; -AVFilter ff_vf_ccrepack = { +const AVFilter ff_vf_ccrepack = { .name = "ccrepack", .description = NULL_IF_CONFIG_SMALL("Repack CEA-708 closed caption metadata"), .uninit = uninit,