transmux 0.23.0

Any-to-any media container muxing hub: demux TS, fMP4/CMAF, MPEG-PS, WebM, FLV, or RTMP into one neutral IR and mux to CMAF/fMP4, progressive MP4, TS, DASH, low-latency DASH, HLS, low-latency HLS, Smooth Streaming, or RTMP. CENC/CBCS encrypt+decrypt, SSAI splice, RTP/RTCP, and an fMP4/CMAF conformance validator; parses codec config headers only, samples stay opaque. no_std + alloc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! RTCP โ€” RTP Control Protocol (RFC 3550 ยง6).
//!
//! Relocated to the standalone [`rtcp_packet`] crate (issue #654, part of
//! epic #653) โ€” this module re-exports it unchanged so every existing
//! `transmux::rtcp::*` (and crate-root `transmux::*`) call site keeps
//! working. See `rtcp-packet/docs/rtcp.md` for the curated spec
//! transcription that is now the implementation/audit oracle for these
//! types, and `rtcp-packet`'s own crate-root doc for the field-by-field
//! wire-format summary.
//!
//! RTCP carries **no media** โ€” this was never a hub `Package`/`Unpackage`
//! spoke, just the wire codec for the RTP control channel; the migration is
//! internal-only and does not change transmux's public API.

pub use rtcp_packet::*;