aboutsummaryrefslogtreecommitdiffstats
path: root/doc/APIchanges
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2022-06-28 15:10:00 +0200
committerNiklas Haas <git@haasn.dev>2022-07-30 11:42:06 +0200
commite1a0f2df3d8c150016bfa2f0dfde7d6b56c6bf3f (patch)
treef00a11e0e5d97b605c7c65afdb4927592f32b745 /doc/APIchanges
parent61ffa23c2e42887b32d469d9e69e9eb887b29e9c (diff)
downloadffmpeg-e1a0f2df3d8c150016bfa2f0dfde7d6b56c6bf3f.tar.gz
avcodec: add API for automatic handling of icc profiles
This functionally already exists, but as pointed out in #9672 and #9673, requiring users to manually include filters is clumsy, error-prone and hard to use together with tools like ffplay. To streamline ICC profile support, add a new AVCodecContext flag to globally enable reading and writing ICC profiles, automatically, for all appropriate media types. Note that this commit only includes the new API. The implementation is split off to separate commits for readability. Signed-off-by: Niklas Haas <git@haasn.dev>
Diffstat (limited to 'doc/APIchanges')
-rw-r--r--doc/APIchanges5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index b3563cd528..e374f3ca81 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -14,6 +14,11 @@ libavutil: 2021-04-27
API changes, most recent first:
+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.
+ The "flags2" option now supports the corresponding flag "icc_profiles".
+
2022-07-xx - xxxxxxxxxx - lavu 57.30.100 - frame.h
Add AVFrame.duration, deprecate AVFrame.pkt_duration.