moq-mux 0.3.7

Media muxers and demuxers for MoQ
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Errors from moq-mux operations.
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
	#[error("moq: {0}")]
	Moq(#[from] moq_lite::Error),

	#[error("hang: {0}")]
	Hang(#[from] hang::Error),

	#[cfg(feature = "mp4")]
	#[error("cmaf: {0}")]
	Cmaf(#[from] crate::cmaf::Error),
}