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