1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//! 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
//!

extern crate av_bitstream;
extern crate av_data;
extern crate av_format;
#[macro_use]
extern crate nom;
#[macro_use]
extern crate log;

#[cfg(test)]
extern crate pretty_env_logger;
#[cfg(test)]
extern crate tempfile;

mod common;
pub mod demuxer;
pub mod muxer;