]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/opus_parser.c
avcodec: Constify all the AVCodecParsers
[ffmpeg] / libavcodec / opus_parser.c
index 28b093390099e6dd9a753acd689f2074317bb27d..726c010f67d23d6081478bdf63bc9b02b8e7b333 100644 (file)
@@ -190,7 +190,7 @@ static int opus_parse(AVCodecParserContext *ctx, AVCodecContext *avctx,
     return next;
 }
 
-AVCodecParser ff_opus_parser = {
+const AVCodecParser ff_opus_parser = {
     .codec_ids      = { AV_CODEC_ID_OPUS },
     .priv_data_size = sizeof(OpusParseContext),
     .parser_parse   = opus_parse,