//! Color space conversions for JPEG encoding and decoding.
//!
//! This module provides conversions between:
//! - RGB and YCbCr (standard JPEG)
//! - RGB and XYB (jpegli perceptual color space)
//! - Grayscale handling
//! - CMYK support
// Fast SIMD RGB→YCbCr conversion using the `yuv` crate (10-150× faster)
// Re-export commonly used items from ycbcr
pub use ;
// Decoder-only YCbCr->RGB conversions
pub use ;
// Re-export commonly used items from xyb