//! # combs-media
//!
//! Media preprocessing — the traits-first basic block for non-text
//! modalities. Vision (SigLIP-style image preprocessing) ships first;
//! audio (mel spectrogram) lands here in the next phase. Preprocessors are
//! plain host-side code (no GPU dependency) producing normalized tensors
//! the runtime hands to the model's `embed_multimodal`.
pub use ;
/// Errors produced while decoding or preprocessing media.
/// Convenient result alias for this crate.
pub type Result<T> = Result;