Skip to main content

ffmpeg_sys_the_third/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(unpredictable_function_pointer_comparisons)]
5#![allow(clippy::approx_constant)]
6#![allow(clippy::missing_safety_doc)]
7#![allow(clippy::redundant_static_lifetimes)]
8#![allow(clippy::too_many_arguments)]
9#![allow(clippy::type_complexity)]
10
11// see rust-lang/rust-bindgen#3241
12#![allow(unnecessary_transmutes)]
13
14include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
15
16mod avutil;
17pub use crate::avutil::*;