]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h261_parser.c
avcodec: Constify all the AVCodecParsers
[ffmpeg] / libavcodec / h261_parser.c
index 2299c1cfc5978a4a84b58ee8a7e6acfe04067a46..e0b84c509e44adef9696640c8fddc9f5a788f337 100644 (file)
@@ -86,7 +86,7 @@ static int h261_parse(AVCodecParserContext *s,
     return next;
 }
 
-AVCodecParser ff_h261_parser = {
+const AVCodecParser ff_h261_parser = {
     .codec_ids      = { AV_CODEC_ID_H261 },
     .priv_data_size = sizeof(ParseContext),
     .parser_parse   = h261_parse,