From ff3d99cce96ce6e09a428196b723ab0b50613b09 Mon Sep 17 00:00:00 2001 From: Yannis Guyon Date: Tue, 24 Mar 2026 09:45:20 +0000 Subject: [PATCH] Bump libavif to 1.4.1 --- CHANGELOG.md | 4 ++++ CMakeLists.txt | 2 +- deps.sh | 4 ++-- src/result_json.cc | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75e7f27..19c4138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.6.5 + +- Bump the version of libavif in deps.sh to v1.4.1. + ## v0.6.4 - Remove the manual libavif+AVM build logic. diff --git a/CMakeLists.txt b/CMakeLists.txt index 02a087b..f4e900e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.20) project( codec-compare-gen LANGUAGES CXX - VERSION 0.6.4) + VERSION 0.6.5) set(CMAKE_CXX_STANDARD 17) option(BUILD_SHARED_LIBS "Build the shared codec-compare-gen library" ON) diff --git a/deps.sh b/deps.sh index b35df40..9c210ca 100755 --- a/deps.sh +++ b/deps.sh @@ -25,9 +25,9 @@ NPROC=$(nproc) mkdir third_party pushd third_party - git clone -b v1.4.0 --depth 1 https://github.com/AOMediaCodec/libavif.git + git clone -b v1.4.1 --depth 1 https://github.com/AOMediaCodec/libavif.git pushd libavif - git checkout d145e1a32af2915779b27e3b0521b6db08dd6bb8 # v1.4.0 + git checkout 6543b22b5bc706c53f038a16fe515f921556d9b3 # v1.4.1 cmake -S . -B build \ -DAVIF_BUILD_APPS=ON \ -DAVIF_BUILD_EXAMPLES=OFF \ diff --git a/src/result_json.cc b/src/result_json.cc index 7b7afd0..b89f4f3 100644 --- a/src/result_json.cc +++ b/src/result_json.cc @@ -135,7 +135,7 @@ Status TasksToJson(const std::string& batch_pretty_name, CodecSettings settings, /*prefix=*/encoded_common_parent.parent_path(), encoded_common_parent)); const std::string build_cmd = - "git clone -b v0.6.4 --depth 1" + "git clone -b v0.6.5 --depth 1" " https://github.com/webmproject/codec-compare-gen.git" " && cd codec-compare-gen && ./deps.sh" " && cmake -S . -B build -DCMAKE_CXX_COMPILER=clang++"