aom-decode 1.0.0

Minimal safe wrapper for libaom AV1 decoder
Documentation
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;

/// Helper functions for undoing chroma subsampling
pub mod chroma;

pub mod avif;