Skip to content

Commit 76cb22b

Browse files
authored
Bump libavif to 1.4.1 (#42)
1 parent 9736c49 commit 76cb22b

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.6.5
4+
5+
- Bump the version of libavif in deps.sh to v1.4.1.
6+
37
## v0.6.4
48

59
- Remove the manual libavif+AVM build logic.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.20)
1616
project(
1717
codec-compare-gen
1818
LANGUAGES CXX
19-
VERSION 0.6.4)
19+
VERSION 0.6.5)
2020
set(CMAKE_CXX_STANDARD 17)
2121

2222
option(BUILD_SHARED_LIBS "Build the shared codec-compare-gen library" ON)

deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ NPROC=$(nproc)
2525
mkdir third_party
2626
pushd third_party
2727

28-
git clone -b v1.4.0 --depth 1 https://github.com/AOMediaCodec/libavif.git
28+
git clone -b v1.4.1 --depth 1 https://github.com/AOMediaCodec/libavif.git
2929
pushd libavif
30-
git checkout d145e1a32af2915779b27e3b0521b6db08dd6bb8 # v1.4.0
30+
git checkout 6543b22b5bc706c53f038a16fe515f921556d9b3 # v1.4.1
3131
cmake -S . -B build \
3232
-DAVIF_BUILD_APPS=ON \
3333
-DAVIF_BUILD_EXAMPLES=OFF \

src/result_json.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Status TasksToJson(const std::string& batch_pretty_name, CodecSettings settings,
135135
/*prefix=*/encoded_common_parent.parent_path(), encoded_common_parent));
136136

137137
const std::string build_cmd =
138-
"git clone -b v0.6.4 --depth 1"
138+
"git clone -b v0.6.5 --depth 1"
139139
" https://github.com/webmproject/codec-compare-gen.git"
140140
" && cd codec-compare-gen && ./deps.sh"
141141
" && cmake -S . -B build -DCMAKE_CXX_COMPILER=clang++"

0 commit comments

Comments
 (0)