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.6

- Fix path to libaom binary object for libheif in deps.sh.

## v0.6.5

- Bump the version of libavif in deps.sh to v1.4.1.
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.5)
VERSION 0.6.6)
set(CMAKE_CXX_STANDARD 17)

option(BUILD_SHARED_LIBS "Build the shared codec-compare-gen library" ON)
Expand Down
2 changes: 1 addition & 1 deletion deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pushd third_party
-DWITH_AOM_DECODER=OFF \
-DWITH_AOM_ENCODER=ON \
-DAOM_INCLUDE_DIR=../libavif/build/_deps/libaom-src/ \
-DAOM_LIBRARY=../libavif/build/_deps/aom-build/libaom.a \
-DAOM_LIBRARY=../libavif/build/_deps/libaom-build/libaom.a \
-DWITH_DAV1D=ON \
-DDAV1D_INCLUDE_DIR=../libavif/build/_deps/dav1d-src/include/ \
-DDAV1D_LIBRARY=../libavif/build/_deps/dav1d-build/src/libdav1d.a \
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.5 --depth 1"
"git clone -b v0.6.6 --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