avcodec: Constify all the AVCodecParsers

Possible now that the next pointer no longer exists.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2021-03-07 00:20:43 +01:00
committed by James Almer
parent cb3ac722f4
commit e625ae6092
52 changed files with 104 additions and 104 deletions

View File

@@ -66,7 +66,7 @@ static int sipr_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
return next;
}
AVCodecParser ff_sipr_parser = {
const AVCodecParser ff_sipr_parser = {
.codec_ids = { AV_CODEC_ID_SIPR },
.priv_data_size = sizeof(SiprParserContext),
.parser_parse = sipr_parse,