//! Sans-IO EBML / `WebM` — freestanding demux + mux (see `adr/0001`,
//! `adr/0003`).
//!
//! Callers own all I/O. No Mediaway types. Mediaway-typed wiring lives in
//! `mediaway_container::webm`.
/// Open-element stack depth on the stack (`EBML`/`Segment`/`Info` or
/// `Tracks`/`TrackEntry`/`Video` or `Cluster`) — typically ≤4.
pub const INLINE_STACK: usize = 6;
/// Typical track count table capacity (audio + video, a couple extras).
pub const INLINE_TRACKS: usize = 4;
/// Typical `Cues`/`SeekHead` entry-table capacity.
pub const INLINE_INDEX: usize = 8;
pub use Demuxer;
/// Low-level parse error (`vint`/`demux`) — see [`error::Error`] docs.
pub use Error;
/// [`mux::Muxer`] error — see [`error::MuxError`] docs.
pub use MuxError;
pub use Muxer;
pub use ;