diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-07-16 17:48:11 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-08-02 10:44:37 +0200 |
commit | eede1d2927db18b962741e6a09ec1401fdad6277 (patch) | |
tree | 895d6736a3fd518de00f4aacd13123584bb0c675 /doc | |
parent | d9cd192dddb459e85a243dd0349f32e9a4f7a9d8 (diff) | |
download | ffmpeg-eede1d2927db18b962741e6a09ec1401fdad6277.tar.gz |
lavu/frame: allow calling av_frame_make_writable() on non-refcounted frames
This is an easy way to make a refcounted frame from a non-refcounted
one.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/APIchanges | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index e374f3ca81..f13c88dc50 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -14,6 +14,11 @@ libavutil: 2021-04-27 API changes, most recent first: +2022-08-xx - xxxxxxxxxx - lavu 57.31.100 - frame.h + av_frame_make_writable() may now be called on non-refcounted + frames and will make a refcounted copy out of them. + Previously an error was returned in such cases. + 2022-07-xx - xxxxxxxxx - lavc 59.40.100 - avcodec.h Add the AV_CODEC_FLAG2_ICC_PROFILES flag to AVCodecContext, to enable automatic reading and writing of embedded ICC profiles in image files. |