diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-07 00:20:43 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 10:43:16 -0300 |
commit | e625ae609206e0550ff733965c6f5447579320aa (patch) | |
tree | 48b0bd2f29ac0469a817b78bf1ecc98784f8ece5 /libavcodec/pnm_parser.c | |
parent | cb3ac722f4fc8d819f663e346bdb53f64a70f1fd (diff) | |
download | ffmpeg-e625ae609206e0550ff733965c6f5447579320aa.tar.gz |
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>
Diffstat (limited to 'libavcodec/pnm_parser.c')
-rw-r--r-- | libavcodec/pnm_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnm_parser.c b/libavcodec/pnm_parser.c index a822c17a2e..f8eb2e7eda 100644 --- a/libavcodec/pnm_parser.c +++ b/libavcodec/pnm_parser.c @@ -131,7 +131,7 @@ end: return next; } -AVCodecParser ff_pnm_parser = { +const AVCodecParser ff_pnm_parser = { .codec_ids = { AV_CODEC_ID_PGM, AV_CODEC_ID_PGMYUV, AV_CODEC_ID_PPM, AV_CODEC_ID_PBM, AV_CODEC_ID_PAM }, .priv_data_size = sizeof(PNMParseContext), |