1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This is a simple implementation of muxer/demuxer for Ivf file format.
//!
//! ## Example
//!
//! \[wip\] look at test in mux/demux
//!
//! ## About Ivf
//!
//! Refer to the [specification](https://wiki.multimedia.cx/index.php/IVF).
//!
//! ## Relies on rust-av
//!
//! This projects relies on [rust-av](https://github.com/rust-av/rust-av) toolkit
//!

pub mod common;
pub mod demuxer;
pub mod muxer;