1//! Native image processing backend.
2//!
3//! Uses the `image` crate for fast image operations without requiring FFmpeg to be installed.
45#![warn(missing_docs)]
67mod config;
8mod io;
9mod probe;
10mod processor;
11mod registry;
1213pub use config::Config;
14pub use registry::register;