Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2022-02-23 16:04:49 +0300
committerMartin Storsjö <martin@martin.st>2022-03-16 15:12:46 +0300
commitf3a0e2ee2b97e2d46b351c29853c056d126884e2 (patch)
tree6faa98613055ef413342d26cfa96ec70be2fc09f /doc
parent288313a8b2c04ea457822c5fdd9df0bb4a06500b (diff)
doc: Add an entry to APIchanges about changes to version.h and version_major.h
Also bump the minor versions of all libraries, to signify the API change of splitting the version.h headers and adding the new version_major.h header. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'doc')
-rw-r--r--doc/APIchanges10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index ccc4f24b28..7b324f48fa 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -14,6 +14,16 @@ libavutil: 2021-04-27
API changes, most recent first:
+2022-03-16 - xxxxxxxxxx - all libraries - version.h, version_major.h
+ No longer implicitly include lib<name>/version.h in lib<name>/<name>.h.
+ Users who depend on defines from these files (LIB<name>_VERSION*,
+ LIB<name>_IDENT) must explicitly include these headers instead of
+ relying on them being included implicitly.
+ Add lib<name>/version_major.h as new installed headers, which only
+ contain the major version number (and corresponding API deprecation
+ defines). These headers are still implicitly included from the
+ library main headers.
+
2022-03-10 - xxxxxxxxxx - lavu 57.23.100 - cpu.h
Add AV_CPU_FLAG_AVX512ICL.