moq-mux 0.4.0

Media muxers and demuxers for MoQ
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Hang catalog publish/subscribe.
//!
//! The hang catalog is a JSON track describing a broadcast's audio/video tracks
//! (codec info, init segments, container format). [`Producer`] manages the catalog
//! tracks (both hang-style and MSF-style) and is shared across every codec demuxer
//! in [`crate::import`]. [`Consumer`] subscribes to the hang catalog track and
//! deserializes incoming updates.

mod consumer;
mod producer;

pub use consumer::*;
pub use producer::*;