diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-10-06 20:27:36 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-10-06 11:35:24 -0700 |
commit | 01116c0c47dc7a92e62cdbeadd7b72448fa4baa2 (patch) | |
tree | 6bf196907b0feb5c2762be47cd90937069e00f71 | |
parent | 73a77e86275f347b8d6ce716e00d1271c6a562f7 (diff) | |
download | meta-openembedded-01116c0c47dc7a92e62cdbeadd7b72448fa4baa2.tar.gz |
libavif: upgrade 1.0.1 -> 1.3.0
This upgrade contains fixes for CVE-2025-48174 and CVE-2025-48175.
Changelog: https://github.com/AOMediaCodec/libavif/blob/v1.3.0/CHANGELOG.md
Libyuv support is currently disabled, because its dependency (libyuv) is not provided
by neither oe-core nor meta-oe.
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-multimedia/recipes-multimedia/libavif/libavif_1.0.1.bb | 15 | ||||
-rw-r--r-- | meta-multimedia/recipes-multimedia/libavif/libavif_1.3.0.bb | 16 |
2 files changed, 16 insertions, 15 deletions
diff --git a/meta-multimedia/recipes-multimedia/libavif/libavif_1.0.1.bb b/meta-multimedia/recipes-multimedia/libavif/libavif_1.0.1.bb deleted file mode 100644 index 9a82cd86bb..0000000000 --- a/meta-multimedia/recipes-multimedia/libavif/libavif_1.0.1.bb +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | SUMMARY = "This library aims to be a friendly, portable C implementation of the AV1 Image File Format" | ||
2 | HOMEPAGE = "https://github.com/AOMediaCodec/libavif" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "BSD-2-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c528b75b07425b5c1d2e34de98c397b5" | ||
6 | |||
7 | SRC_URI = "git://github.com/AOMediaCodec/libavif.git;protocol=https;branch=v1.0.x" | ||
8 | |||
9 | SRCREV = "d1c26facaf5a8a97919ceee06814d05d10e25622" | ||
10 | |||
11 | DEPENDS = "dav1d" | ||
12 | |||
13 | inherit cmake | ||
14 | |||
15 | EXTRA_OECMAKE += "-DAVIF_CODEC_DAV1D=ON" | ||
diff --git a/meta-multimedia/recipes-multimedia/libavif/libavif_1.3.0.bb b/meta-multimedia/recipes-multimedia/libavif/libavif_1.3.0.bb new file mode 100644 index 0000000000..44f5c1819a --- /dev/null +++ b/meta-multimedia/recipes-multimedia/libavif/libavif_1.3.0.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | SUMMARY = "This library aims to be a friendly, portable C implementation of the AV1 Image File Format" | ||
2 | HOMEPAGE = "https://github.com/AOMediaCodec/libavif" | ||
3 | SECTION = "libs" | ||
4 | # Most is the code is under BSD-2, but libyuv is under BSD-3, and iccjpeg is under IJG | ||
5 | LICENSE = "BSD-2-Clause & BSD-3-Clause & IJG" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=51549db0941829faeedcc86efec2f4c0" | ||
7 | |||
8 | SRC_URI = "git://github.com/AOMediaCodec/libavif.git;protocol=https;branch=main;tag=v${PV}" | ||
9 | |||
10 | SRCREV = "1aadfad932c98c069a1204261b1856f81f3bc199" | ||
11 | |||
12 | DEPENDS = "dav1d" | ||
13 | |||
14 | inherit cmake | ||
15 | |||
16 | EXTRA_OECMAKE += "-DAVIF_CODEC_DAV1D=ON -DAVIF_LIBYUV=OFF" | ||