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
8
9
10
11
12
13
14
//! YUVA MixedSinker integration tests, split by sub-family.
//!
//! `pub(super) use super::*;` forwards `tests/mod.rs`'s glob (which
//! brings in `crate::{ColorMatrix, frame::*, raw::*, source::*}` plus
//! the cross-cutting `pseudo_random_u8` etc. helpers) into this
//! module so the per-sub-family submodules can pick them up via
//! their own `use super::*;`.

#[allow(unused_imports)]
pub(super) use super::*;

mod sub_4_2_0;
mod sub_4_2_2;
mod sub_4_4_4;