iso-bmff 0.1.1

Sans-IO ISOBMFF / MP4 mux and demux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Bitstream framing helpers (sans-io).

#![forbid(unsafe_code)]

#[cfg(feature = "audio")]
pub mod aac;
#[cfg(feature = "video")]
pub mod avc;

#[cfg(feature = "audio")]
pub use aac::strip_adts;
#[cfg(feature = "video")]
pub use avc::{
    AvcDecoderConfig, AvccOut, annex_b_sequence_header, avcc_payload_to_annex_b,
    parse_avc_decoder_config, to_avcc,
};