Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/result_json.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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++"
Expand Down