Rust utilities for YUV format handling and conversion.
Fast and simple YUV approximation conversion in pure Rust. At most the same as libyuv does. Performance will be equal to libyuv or slightly higher on platforms where SIMD is implemented. Otherwise equal or slower.
Mostly implemented AVX2, SSE, NEON
X86_64 targets with SSE and AVX uses runtime dispatch to detect available cpu features.
RGB to YCbCr
rgb_to_yuv422;
YCbCr to RGB
yuv422_to_rgb;