Skip to content

Commit

Permalink
Bump dav1d version to 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Nov 1, 2024
1 parent 94b1dea commit 72a1e2a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dav1d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.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
Expand Down Expand Up @@ -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.4.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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ steps above.

## Supported versions

The bindings require dav1d 1.3.0
The bindings require dav1d 1.4.0

## TODO
- [x] Simple bindings
Expand Down
2 changes: 1 addition & 1 deletion dav1d-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ libc = "0.2"

[package.metadata.system-deps.dav1d]
name = "dav1d"
version = "1.3.0"
version = "1.4.0"
2 changes: 1 addition & 1 deletion dav1d-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0";

macro_rules! runner {
($cmd:expr, $($arg:expr),*) => {
Expand Down

0 comments on commit 72a1e2a

Please sign in to comment.