rsmpeg 0.3.0

A Rust crate that exposes FFmpeg's power as much as possible.
Documentation
//! Everything related to `libavutil`.
mod audio_fifo;
mod channel_layout;
mod dict;
mod frame;
mod imgutils;
mod motion_vector;
mod pixfmt;
mod rational;
mod samplefmt;

pub use audio_fifo::*;
pub use channel_layout::*;
pub use dict::*;
pub use frame::*;
pub use imgutils::*;
pub use motion_vector::*;
pub use pixfmt::*;
pub use rational::*;
pub use samplefmt::*;