//! MPEG-TS (transport stream).
//!
//! An interchange format only, not a wire format: [`Import`] demuxes a TS byte
//! stream into a broadcast and [`Export`] muxes a broadcast back into TS. The
//! codec layer (H.264/H.265/AAC) does the elementary-stream parsing; this module
//! only handles PAT/PMT/PES framing, PTS, and ADTS framing for AAC.
pub use *;
pub use *;