aom_decode/lib.rs
1pub type Result<T, E = Error> = std::result::Result<T, E>;
2
3mod error;
4pub use error::Error;
5
6pub mod color;
7
8mod aom;
9pub use aom::Config;
10pub use aom::Decoder;
11pub use aom::FrameTempRef;
12pub use aom::Planes;
13pub use aom::FrameMeta;
14
15pub use imgref;
16
17/// Helper functions for undoing chroma subsampling
18pub mod chroma;
19
20pub mod avif;