codec: add various Codec related stuff

This commit is contained in:
meh
2015-05-12 03:49:55 +02:00
parent 9c8ca6601f
commit 66901497ab
6 changed files with 351 additions and 0 deletions

View File

@ -7,6 +7,17 @@ pub mod subtitle;
pub mod discard;
pub mod context;
pub use self::context::Context;
pub mod codec;
pub mod encoder;
pub use self::encoder::Encode;
pub mod decoder;
pub use self::decoder::Decode;
use std::ffi::CStr;
use std::str::from_utf8_unchecked;