pub type Result<T, E = Error> = std::result::Result<T, E>;
mod error;
pub use error::Error;
pub mod color;
mod aom;
pub use aom::Config;
pub use aom::Decoder;
pub use aom::FrameTempRef;
pub use aom::Planes;
pub use aom::FrameMeta;
pub use imgref;
pub mod chroma;
pub mod avif;