Skip to content

Commit fe094b3

Browse files
author
Andreas Molzer
authored
Merge pull request #2373 from awxkee/avif-yuv-decoder
Avif YUV decoder, drop dcv, high bit depth
2 parents 9ee68e2 + daa5e88 commit fe094b3

File tree

4 files changed

+1772
-89
lines changed

4 files changed

+1772
-89
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ num-traits = { version = "0.2.0" }
4242
# Optional dependencies
4343
color_quant = { version = "1.1", optional = true }
4444
dav1d = { version = "0.10.3", optional = true }
45-
dcv-color-primitives = { version = "0.6.1", optional = true }
4645
exr = { version = "1.5.0", optional = true }
4746
gif = { version = "0.13", optional = true }
4847
image-webp = { version = "0.2.0", optional = true }
@@ -91,7 +90,7 @@ webp = ["dep:image-webp"]
9190
rayon = ["dep:rayon", "ravif?/threading"] # Enables multi-threading
9291
nasm = ["ravif?/asm"] # Enables use of nasm by rav1e (requires nasm to be installed)
9392
color_quant = ["dep:color_quant"] # Enables color quantization
94-
avif-native = ["dep:mp4parse", "dep:dcv-color-primitives", "dep:dav1d"] # Enable native dependency libdav1d
93+
avif-native = ["dep:mp4parse", "dep:dav1d"] # Enable native dependency libdav1d
9594
benchmarks = [] # Build some inline benchmarks. Useful only during development (requires nightly Rust)
9695
serde = ["dep:serde"]
9796

0 commit comments

Comments
 (0)