Skip to main content

media/
video.rs

1//! Video frame surface — re-exports `decode`'s `VideoFrame` + `VideoStream`
2//! so M-MEDIA consumers don't pull `decode` directly.
3//!
4//! The frame model is locked at the `decode` crate (BGRA8, per-frame PTS,
5//! frame index, dimensions). M-MEDIA chunks .6 / .13 / .16 add capture
6//! pipelines that emit through this contract; M-MEDIA.12 adds the Wisp
7//! upload path.
8
9pub use decode::{VideoFrame, VideoStream};