mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/parser: Schedule av_parser_change for removal
Originally deprecated in748c2fca7e
, publically deprecated in9a07c1332c
(merged into FFmpeg in1885ffb03d
). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
64af14555b
commit
dc20b27802
|
@ -3576,14 +3576,18 @@ 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 AVBitStreamFilter
|
||||
* @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);
|
||||
|
||||
/**
|
||||
|
|
|
@ -186,6 +186,7 @@ int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx,
|
|||
return index;
|
||||
}
|
||||
|
||||
#if FF_API_PARSER_CHANGE
|
||||
int av_parser_change(AVCodecParserContext *s, AVCodecContext *avctx,
|
||||
uint8_t **poutbuf, int *poutbuf_size,
|
||||
const uint8_t *buf, int buf_size, int keyframe)
|
||||
|
@ -220,7 +221,7 @@ int av_parser_change(AVCodecParserContext *s, AVCodecContext *avctx,
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
void av_parser_close(AVCodecParserContext *s)
|
||||
{
|
||||
if (s) {
|
||||
|
|
|
@ -150,6 +150,9 @@
|
|||
#ifndef FF_API_MPV_RC_STRATEGY
|
||||
#define FF_API_MPV_RC_STRATEGY (LIBAVCODEC_VERSION_MAJOR < 59)
|
||||
#endif
|
||||
#ifndef FF_API_PARSER_CHANGE
|
||||
#define FF_API_PARSER_CHANGE (LIBAVCODEC_VERSION_MAJOR < 59)
|
||||
#endif
|
||||
#ifndef FF_API_THREAD_SAFE_CALLBACKS
|
||||
#define FF_API_THREAD_SAFE_CALLBACKS (LIBAVCODEC_VERSION_MAJOR < 60)
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue