1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avfilter/buffersink: deprecate AVBufferSinkParams and AVABufferSinkParams

This commit is contained in:
Zhao Zhili 2019-12-06 15:06:17 +08:00 committed by Nicolas George
parent 07ffdedf78
commit 61097535cd
2 changed files with 6 additions and 0 deletions

View File

@ -125,6 +125,7 @@ int attribute_align_arg av_buffersink_get_samples(AVFilterContext *ctx,
return get_frame_internal(ctx, frame, 0, nb_samples); return get_frame_internal(ctx, frame, 0, nb_samples);
} }
#if FF_API_NEXT
AVBufferSinkParams *av_buffersink_params_alloc(void) AVBufferSinkParams *av_buffersink_params_alloc(void)
{ {
static const int pixel_fmts[] = { AV_PIX_FMT_NONE }; static const int pixel_fmts[] = { AV_PIX_FMT_NONE };
@ -144,6 +145,7 @@ AVABufferSinkParams *av_abuffersink_params_alloc(void)
return NULL; return NULL;
return params; return params;
} }
#endif
static av_cold int common_init(AVFilterContext *ctx) static av_cold int common_init(AVFilterContext *ctx)
{ {

View File

@ -59,6 +59,7 @@ int av_buffersink_get_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flag
*/ */
#define AV_BUFFERSINK_FLAG_NO_REQUEST 2 #define AV_BUFFERSINK_FLAG_NO_REQUEST 2
#if FF_API_NEXT
/** /**
* Struct to use for initializing a buffersink context. * Struct to use for initializing a buffersink context.
*/ */
@ -71,6 +72,7 @@ typedef struct AVBufferSinkParams {
* *
* Must be freed with av_free(). * Must be freed with av_free().
*/ */
attribute_deprecated
AVBufferSinkParams *av_buffersink_params_alloc(void); AVBufferSinkParams *av_buffersink_params_alloc(void);
/** /**
@ -89,7 +91,9 @@ typedef struct AVABufferSinkParams {
* *
* Must be freed with av_free(). * Must be freed with av_free().
*/ */
attribute_deprecated
AVABufferSinkParams *av_abuffersink_params_alloc(void); AVABufferSinkParams *av_abuffersink_params_alloc(void);
#endif
/** /**
* Set the frame size for an audio buffer sink. * Set the frame size for an audio buffer sink.