From 22c47b10b28c0c47298d34a7108d378be5d7d08e Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 29 Jun 2023 20:12:23 +0200 Subject: [PATCH] avcodec/vvc_parser: Constify parser The discrepancy between the definition and the declaration in parsers.c is actually UB. Reviewed-by: James Almer Signed-off-by: Andreas Rheinhardt --- libavcodec/vvc_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vvc_parser.c b/libavcodec/vvc_parser.c index 4f7657f7ab..f350fe70a9 100644 --- a/libavcodec/vvc_parser.c +++ b/libavcodec/vvc_parser.c @@ -571,7 +571,7 @@ static void vvc_parser_close(AVCodecParserContext *s) av_freep(&ctx->pc.buffer); } -AVCodecParser ff_vvc_parser = { +const AVCodecParser ff_vvc_parser = { .codec_ids = { AV_CODEC_ID_VVC }, .priv_data_size = sizeof(VVCParserContext), .parser_init = vvc_parser_init,