media-format-types 0.9.0

Provides common types for demuxer and muxer implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Media format types for demuxer and muxer implementations

#[cfg(feature = "demuxer")]
pub mod demuxer;
pub mod format;
#[cfg(feature = "muxer")]
pub mod muxer;
#[cfg(any(feature = "demuxer", feature = "muxer"))]
pub mod stream;
#[cfg(any(feature = "demuxer", feature = "muxer"))]
pub mod track;

pub use crate::format::*;