summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-26 10:42:02 +0100
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:07 -0300
commitf34521266ec5816eefa4c10db6098cb91e03c695 (patch)
treeca7c2770db20f09b53b1577ecaa1f7c85f438487 /libavcodec/avcodec.h
parente1e975869dfd6f77f606e0ad00006432d3fc8af7 (diff)
avcodec/parser: Remove deprecated av_parser_change
Deprecated in 9a07c1332cfe092b57b5758f22b686ca58806c60. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index e817befa1c..43b83ac348 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3276,18 +3276,6 @@ int av_parser_parse2(AVCodecParserContext *s,
int64_t pts, int64_t dts,
int64_t pos);
-#if FF_API_PARSER_CHANGE
-/**
- * @return 0 if the output buffer is a subset of the input, 1 if it is allocated and must be freed
- * @deprecated Use dump_extradata, remove_extra or extract_extradata
- * bitstream filters instead.
- */
-attribute_deprecated
-int av_parser_change(AVCodecParserContext *s,
- AVCodecContext *avctx,
- uint8_t **poutbuf, int *poutbuf_size,
- const uint8_t *buf, int buf_size, int keyframe);
-#endif
void av_parser_close(AVCodecParserContext *s);
/**