oxideav-mpegts 0.0.1

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.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Wiring into `oxideav-core`'s container registry. Stub.

#[cfg(feature = "registry")]
use oxideav_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")]
pub fn register(_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.
}