Use unstable rav1e, with noise synthesis

This commit is contained in:
DataHoarder 2022-05-01 19:21:39 +02:00
parent a272b18de4
commit ed1b49b056
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ RUN /build.sh
FROM rust:1.60-bullseye AS build-rav1e
ARG RAV1E_TAG=p20220426
ARG RAV1E_TAG=master
ARG RAV1E_REPO=https://github.com/xiph/rav1e.git
RUN DEBIAN_FRONTEND=noninteractive apt update && \

View file

@ -4,6 +4,6 @@ set -o pipefail
git clone --branch "${RAV1E_TAG}" --depth 1 "${RAV1E_REPO}" /src/rav1e
pushd /src/rav1e
RUSTFLAGS="-C target-cpu=native" cargo build --release --features asm,threading
RUSTFLAGS="-C target-cpu=native" cargo build --release --features unstable,asm,threading
cp "$(cargo metadata --format-version 1 | jq -r '.target_directory')/release/rav1e" /usr/bin/rav1e