diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-26 02:46:40 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-26 14:51:16 -0700 |
commit | 53abe32409f13687c864b3cda077a1aa906a2459 (patch) | |
tree | 374de74a800a890a9a09a9f3328a8cce99daecde /libavcodec | |
parent | 1a880b2fb8456ce68eefe5902bac95fea1e6a72d (diff) | |
download | ffmpeg-53abe32409f13687c864b3cda077a1aa906a2459.tar.gz |
avcodec: Mark argument in av_{parser|hwaccel|bitstream_filter}_next as const
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 6 | ||||
-rw-r--r-- | libavcodec/bitstream_filter.c | 2 | ||||
-rw-r--r-- | libavcodec/parser.c | 2 | ||||
-rw-r--r-- | libavcodec/utils.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index cc74aeef04..8f93911019 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3800,7 +3800,7 @@ typedef struct AVCodecParser { struct AVCodecParser *next; } AVCodecParser; -AVCodecParser *av_parser_next(AVCodecParser *c); +AVCodecParser *av_parser_next(const AVCodecParser *c); void av_register_codec_parser(AVCodecParser *parser); AVCodecParserContext *av_parser_init(int codec_id); @@ -4281,7 +4281,7 @@ int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc, const uint8_t *buf, int buf_size, int keyframe); void av_bitstream_filter_close(AVBitStreamFilterContext *bsf); -AVBitStreamFilter *av_bitstream_filter_next(AVBitStreamFilter *f); +AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f); /* memory */ @@ -4343,7 +4343,7 @@ void av_register_hwaccel(AVHWAccel *hwaccel); * if hwaccel is non-NULL, returns the next registered hardware accelerator * after hwaccel, or NULL if hwaccel is the last one. */ -AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel); +AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel); /** diff --git a/libavcodec/bitstream_filter.c b/libavcodec/bitstream_filter.c index 8960b19ecb..f524d3ef8d 100644 --- a/libavcodec/bitstream_filter.c +++ b/libavcodec/bitstream_filter.c @@ -25,7 +25,7 @@ static AVBitStreamFilter *first_bitstream_filter = NULL; -AVBitStreamFilter *av_bitstream_filter_next(AVBitStreamFilter *f) +AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f) { if (f) return f->next; diff --git a/libavcodec/parser.c b/libavcodec/parser.c index 080bbc345d..6d20516f28 100644 --- a/libavcodec/parser.c +++ b/libavcodec/parser.c @@ -29,7 +29,7 @@ static AVCodecParser *av_first_parser = NULL; -AVCodecParser *av_parser_next(AVCodecParser *p) +AVCodecParser *av_parser_next(const AVCodecParser *p) { if (p) return p->next; diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 16c30c3497..dc7ffc4cec 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2279,7 +2279,7 @@ void av_register_hwaccel(AVHWAccel *hwaccel) hwaccel->next = NULL; } -AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel) +AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel) { return hwaccel ? hwaccel->next : first_hwaccel; } |