diff options
author | Anton Khirnov <anton@khirnov.net> | 2017-01-13 11:53:51 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2017-02-11 11:37:44 +0100 |
commit | 99684f3ae752fc8bfb44a2dd1482f8d7a3d8536d (patch) | |
tree | fe2ddc08dc5fb6bc915197d44319e845ef80452d /doc | |
parent | 435cd7bc99671bf561193421a50ac6e9d63c4266 (diff) | |
download | ffmpeg-99684f3ae752fc8bfb44a2dd1482f8d7a3d8536d.tar.gz |
avio: add a destructor for AVIOContext
Before this commit, AVIOContext is to be freed with a plain av_free(),
which prevents us from adding any deeper structure to it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/APIchanges | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index c161618d92..8c7d279fec 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,9 @@ libavutil: 2015-08-28 API changes, most recent first: +2016-xx-xx - xxxxxxx - lavf 57.11.0 - avio.h + Add avio_context_free(). From now on it must be used for freeing AVIOContext. + 2017-02-01 - xxxxxxx - lavc - avcodec.h Deprecate AVCodecContext.refcounted_frames. This was useful for deprecated API only (avcodec_decode_video2/avcodec_decode_audio4). The new decode APIs |