diff options
author | James Almer <jamrial@gmail.com> | 2020-10-10 01:12:01 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-10-10 01:15:49 -0300 |
commit | 1ad554a00b4df43605cc4d74b781aec0711afc20 (patch) | |
tree | 65501792f31efbe0b9b15a33d382f59effdba1b6 /libavcodec/avcodec.h | |
parent | fe9bc1cc45e2bebba1efa7b9a20b0d66679bf2d5 (diff) | |
download | ffmpeg-1ad554a00b4df43605cc4d74b781aec0711afc20.tar.gz |
avcodec/parsers: add missing FF_API_NEXT wrappers
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c91b2fd169..20af3ef00d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3543,11 +3543,13 @@ typedef struct AVCodecParser { */ const AVCodecParser *av_parser_iterate(void **opaque); +#if FF_API_NEXT attribute_deprecated AVCodecParser *av_parser_next(const AVCodecParser *c); attribute_deprecated void av_register_codec_parser(AVCodecParser *parser); +#endif AVCodecParserContext *av_parser_init(int codec_id); /** |