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#![deny(missing_docs)]
12#![deny(unsafe_code)]
13#![deny(unreachable_pub)]
14
15mod config;
16mod obu;
17
18pub use config::{AV1CodecConfigurationRecord, AV1VideoDescriptor};
19pub use obu::{ObuHeader, ObuType, seq};