diff --git a/.github/workflows/dav1d.yml b/.github/workflows/dav1d.yml index 5303c79..f5e1139 100644 --- a/.github/workflows/dav1d.yml +++ b/.github/workflows/dav1d.yml @@ -35,7 +35,7 @@ jobs: DAV1D_DIR: dav1d_dir LIB_PATH: lib/x86_64-linux-gnu run: | - git clone --branch 1.3.0 --depth 1 https://code.videolan.org/videolan/dav1d.git + git clone --branch 1.5.0 --depth 1 https://code.videolan.org/videolan/dav1d.git cd dav1d meson build -Dprefix=$HOME/$DAV1D_DIR -Denable_tools=false -Denable_examples=false --buildtype release ninja -C build @@ -91,7 +91,7 @@ jobs: - name: Build dav1d run: | - git clone --branch 1.3.0 --depth 1 https://code.videolan.org/videolan/dav1d.git + git clone --branch 1.5.0 --depth 1 https://code.videolan.org/videolan/dav1d.git cd dav1d meson build -Dprefix=C:\build -Denable_tools=false -Denable_examples=false --buildtype release ninja -C build diff --git a/README.md b/README.md index 14ef364..125c75c 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ steps above. ## Supported versions -The bindings require dav1d 1.3.0 +The bindings require dav1d>=1.3.0 ( Might not work for >1.5.0 ) ## TODO - [x] Simple bindings diff --git a/dav1d-sys/build.rs b/dav1d-sys/build.rs index f5f9bbc..74e6635 100644 --- a/dav1d-sys/build.rs +++ b/dav1d-sys/build.rs @@ -7,7 +7,7 @@ mod build { use std::process::{Command, Stdio}; const REPO: &str = "https://code.videolan.org/videolan/dav1d.git"; - const TAG: &str = "1.3.0"; + const TAG: &str = "1.5.0"; macro_rules! runner { ($cmd:expr, $($arg:expr),*) => {