├── .github ├── dependabot.yml └── workflows │ └── dav1d.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── dav1d-sys ├── .gitignore ├── Cargo.toml ├── LICENSE ├── build.rs └── src │ └── lib.rs ├── src └── lib.rs ├── test-420-12.ivf ├── test-420-8.ivf └── tools ├── Cargo.toml └── src └── main.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dav1d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/.github/workflows/dav1d.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/README.md -------------------------------------------------------------------------------- /dav1d-sys/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /dav1d-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/dav1d-sys/Cargo.toml -------------------------------------------------------------------------------- /dav1d-sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/dav1d-sys/LICENSE -------------------------------------------------------------------------------- /dav1d-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/dav1d-sys/build.rs -------------------------------------------------------------------------------- /dav1d-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/dav1d-sys/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test-420-12.ivf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/test-420-12.ivf -------------------------------------------------------------------------------- /test-420-8.ivf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/test-420-8.ivf -------------------------------------------------------------------------------- /tools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/tools/Cargo.toml -------------------------------------------------------------------------------- /tools/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-av/dav1d-rs/HEAD/tools/src/main.rs --------------------------------------------------------------------------------