#![warn(missing_docs)]
#![cfg_attr(test, allow(unused_crate_dependencies))]
#[cfg(feature = "cache")]
pub mod cache;
#[cfg(feature = "metrics")]
pub mod metrics;
pub mod cl;
pub mod clcl;
pub mod decoder_helpers;
pub mod device_profiles;
pub mod enc;
pub mod error;
pub mod jpeg;
pub mod photodb;
pub mod pixel_utils;
pub mod profile;
pub mod profile_db;
pub mod profile_parser;
pub mod reordered_rgb555;
pub mod rgb555;
pub mod rgb565;
pub mod simd;
pub mod uyvy;
pub mod yuv;
pub mod ycbcr420;
pub use error::{DecodeError, DecodedImage};
pub mod pipeline;
pub use pipeline::{decode_ithmb, open_ithmb};