aom_decode/lib.rs
1pub type Result<T, E = Error> = std::result::Result<T, E>;
2pub use yuv::color;
3
4mod error;
5pub use error::Error;
6
7mod aom;
8pub use aom::Config;
9pub use aom::Decoder;
10pub use aom::FrameTempRef;
11pub use aom::RowsIter;
12pub use aom::RowsIters;
13pub use aom::FrameMeta;
14
15/// Helper functions for undoing chroma subsampling
16pub mod chroma;
17
18#[cfg(feature = "avif")]
19pub mod avif;