Pure-Rust clean-room MPEG-TS (ISO/IEC 13818-1) demuxer — 188-byte TS packet parser, PAT/PMT discovery, PES reassembly. Built to ingest Blu-ray .m2ts bytes for remux pipelines.
//! Wiring into `oxideav-core`'s container registry. Stub.
#[cfg(feature ="registry")]useoxideav_core::RuntimeContext;/// Register the MPEG-TS container declaration in the runtime
/// context. Stub — to be filled by a downstream pass that wires
/// the actual demuxer factory.
#[cfg(feature ="registry")]pubfnregister(_ctx:&mut RuntimeContext){// TODO: hook the demuxer factory once `oxideav-mpegts::pes` and
// `psi` land. For now this is a placeholder so the workspace's
// `populate_container_registry` doesn't crash on us.
}