scuffle_av1/lib.rs
1//! A crate for decoding and encoding AV1 video headers.
2//!
3//! ## License
4//!
5//! This project is licensed under the [MIT](./LICENSE.MIT) or
6//! [Apache-2.0](./LICENSE.Apache-2.0) license. You can choose between one of
7//! them if you use this work.
8//!
9//! `SPDX-License-Identifier: MIT OR Apache-2.0`
10#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]
11
12mod config;
13mod obu;
14
15pub use config::{AV1CodecConfigurationRecord, AV1VideoDescriptor};
16pub use obu::{seq, ObuHeader, ObuType};