10 lines
204 B
Rust
10 lines
204 B
Rust
#![feature(convert)]
|
|
#![allow(raw_pointer_derive, non_camel_case_types)]
|
|
|
|
extern crate libc;
|
|
extern crate ffmpeg_sys as ffi;
|
|
#[macro_use] extern crate bitflags;
|
|
|
|
pub mod util;
|
|
pub use util::error::Error;
|