zenwebp 0.4.2

High-performance WebP encoding and decoding in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# VP8v2 Decoder

Redesigned VP8 lossy decoder targeting libwebp C parity or faster.

Key differences from v1:
- DecoderContext with buffer reuse (no memset per decode)
- Streaming row pipeline (no full-frame Y/U/V buffers)
- Single #[arcane] per MB row (all #[rite] inlines)
- Direct-to-cache prediction (no workspace copy)
- yuv crate for color conversion
- Precomputed filter/dequant tables
- Fixed-size arrays everywhere