diff options
author | Nicolas George <george@nsup.org> | 2020-08-14 10:56:50 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2020-08-20 12:49:08 +0200 |
commit | 1f12b7b1d35e9b7f77fee1475883cae357ac50e1 (patch) | |
tree | 4b3e2ea5f80fd00fdff2163f4dc55649a0e2c73b | |
parent | 3b7036bc1d3bea6631088b58a6dc6399aad157e3 (diff) | |
download | ffmpeg-1f12b7b1d35e9b7f77fee1475883cae357ac50e1.tar.gz |
lavfi/buffersink: clearly document that the Params struct are unused.
-rw-r--r-- | libavfilter/buffersink.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/buffersink.h b/libavfilter/buffersink.h index 2ec821c685..c0e6b5386f 100644 --- a/libavfilter/buffersink.h +++ b/libavfilter/buffersink.h @@ -61,7 +61,7 @@ int av_buffersink_get_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flag #if FF_API_NEXT /** - * Struct to use for initializing a buffersink context. + * Deprecated and unused struct to use for initializing a buffersink context. */ typedef struct AVBufferSinkParams { const enum AVPixelFormat *pixel_fmts; ///< list of allowed pixel formats, terminated by AV_PIX_FMT_NONE @@ -76,7 +76,7 @@ attribute_deprecated AVBufferSinkParams *av_buffersink_params_alloc(void); /** - * Struct to use for initializing an abuffersink context. + * Deprecated and unused struct to use for initializing an abuffersink context. */ typedef struct AVABufferSinkParams { const enum AVSampleFormat *sample_fmts; ///< list of allowed sample formats, terminated by AV_SAMPLE_FMT_NONE |