mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-21 06:20:09 +01:00
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:
committed by
James Almer
parent
cb3ac722f4
commit
e625ae6092
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user