summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2020-10-10 01:12:01 -0300
committerJames Almer <jamrial@gmail.com>2020-10-10 01:15:49 -0300
commit1ad554a00b4df43605cc4d74b781aec0711afc20 (patch)
tree65501792f31efbe0b9b15a33d382f59effdba1b6 /libavcodec/avcodec.h
parentfe9bc1cc45e2bebba1efa7b9a20b0d66679bf2d5 (diff)
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.h2
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);
/**