diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-14 16:20:07 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-18 02:55:13 +0200 |
commit | 7b2ed4d54ad7adaa79a226474de62ddc0a1a5c06 (patch) | |
tree | 918584e8e198c6ce00cd0ddc45689a439fe283de /libavcodec/thread.h | |
parent | 5acc3c4cff88de1ced1c4d9c6070b708613b43c1 (diff) | |
download | ffmpeg-7b2ed4d54ad7adaa79a226474de62ddc0a1a5c06.tar.gz |
avcodec/thread: Remove outdated documentation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/thread.h')
-rw-r--r-- | libavcodec/thread.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/thread.h b/libavcodec/thread.h index 2c8c0cdb16..180e1137ae 100644 --- a/libavcodec/thread.h +++ b/libavcodec/thread.h @@ -73,12 +73,7 @@ void ff_thread_finish_setup(AVCodecContext *avctx); int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags); /** - * Wrapper around release_buffer() frame-for multithreaded codecs. - * Call this function instead of avctx->release_buffer(f). - * The AVFrame will be copied and the actual release_buffer() call - * will be performed later. The contents of data pointed to by the - * AVFrame should not be changed until ff_thread_get_buffer() is called - * on it. + * Wrapper around av_frame_unref() for frame-threaded codecs. * * @param avctx The current context. * @param f The picture being released. |