iso_bmff/bitstream/mod.rs
1//! Bitstream framing helpers (sans-io).
2
3#![forbid(unsafe_code)]
4
5#[cfg(feature = "audio")]
6pub mod aac;
7#[cfg(feature = "video")]
8pub mod avc;
9
10#[cfg(feature = "audio")]
11pub use aac::strip_adts;
12#[cfg(feature = "video")]
13pub use avc::{
14 AvcDecoderConfig, AvccOut, annex_b_sequence_header, avcc_payload_to_annex_b,
15 parse_avc_decoder_config, to_avcc,
16};