1#![cfg_attr(feature = "docs", doc = "\n\nSee the [changelog][changelog] for a full release history.")]
3#![cfg_attr(feature = "docs", doc = "## Feature flags")]
4#![cfg_attr(feature = "docs", doc = document_features::document_features!())]
5#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]
12#![cfg_attr(docsrs, feature(doc_auto_cfg))]
13#![deny(missing_docs)]
14#![deny(unsafe_code)]
15#![deny(unreachable_pub)]
16
17#[cfg(feature = "isobmff")]
18pub mod boxes;
19mod config;
20mod obu;
21
22pub use config::{AV1CodecConfigurationRecord, AV1VideoDescriptor};
23pub use obu::{ObuHeader, ObuType, seq};
24
25#[cfg(feature = "docs")]
27#[scuffle_changelog::changelog]
28pub mod changelog {}