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.rheinha...@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.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to