[FFmpeg-devel] [PATCH 2/4] avcodec/vvc_parser: Constify parser

James Almer jamrial at gmail.com
Thu Jun 29 21:19:22 EEST 2023


On 6/29/2023 3:19 PM, Andreas Rheinhardt wrote:
> The discrepancy between the definition and the declaration
> in parsers.c is actually UB.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> ---
>   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,

LGTM.


More information about the ffmpeg-devel mailing list