colconv 0.1.0

SIMD-dispatched color-conversion kernels covering the FFmpeg AVPixelFormat space, with a Sink-based API so consumers pick which derived outputs (RGB / Luma / HSV / custom) they want without paying for the ones they don't.
Documentation
1
2
3
4
5
6
7
//! High-bit-depth 4:4:4 `MixedSinker` impls, split per sub-format
//! so no single source exceeds ~1.5 KLoC: Yuv444p9/10/12/14/16 +
//! P410/P412/P416.

#[cfg(feature = "yuv-semi-planar")]
mod p4xx;
mod yuv444p;