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
// Tests reference `mediaframe::frame::{WhiteBalance, ColorCorrectionMatrix,
// fuse_wb_ccm, ...}` which only exist when mediaframe's `bayer` feature is
// enabled (colconv's `bayer` feature passes through to it). Without the gate,
// `cargo test --no-default-features` would try to import names that don't
// exist in the mediaframe build it's linking against.
#[cfg(all(test, feature = "bayer"))]
mod tests;