libav_sys/
lib.rs

1//! Rust bindings for system [libav](http://trac.ffmpeg.org/wiki/Using%20libav*) libraries
2//! 
3//! You can the automatically generated bindings in the [`ffi`] module;
4
5#![allow(deprecated)]
6#![allow(dead_code)]
7#![allow(non_camel_case_types)]
8#![allow(non_snake_case)]
9#![allow(non_upper_case_globals)]
10#![allow(clashing_extern_declarations)]
11
12
13/// Generated bindings for the system libav libraries.
14/// 
15/// 
16/// # Warning
17/// Documentation for this crate cannot be generated on [`docs.rs`](//docs.rs) because it requires
18/// a system installation of ffmpeg.
19/// 
20/// Also, the bindings may be different depending on the particular version of ffmpeg installed.
21/// 
22/// To generate the documentation locally, you can use the `cargo rustdoc --open` command.
23pub mod ffi {
24    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
25}
26