caved 0.0.0

Codecs for Audio and Video Encoding and Decoding, static bindings to libav (ffmpeg). Some re-implemented in Rust. Goal is for all Rust.
Documentation
// Copyright Jeron A. Lau 2018.
// Dual-licensed under either the MIT License or the Boost Software License,
// Version 1.0.  (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
//
//! # [Codecs for Audio and Video Encoding and Decoding](https://crates.io/crates/caved)
//! Codecs for Audio and Video Encoding and Decoding, static bindings to libav
//! (ffmpeg).  Some re-implemented in Rust.
//! Goal is for all Rust.
//!
//! ## Features
//! `caved`'s current features:
//! * Nothing yet
//!
//! ## Getting started
//! ```
//! extern crate caved;
//! use caved::*;
//! ```

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}