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
// 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);
    }
}