![FreezyLemon](/assets/img/avatar_default.png)
* Replace tag/error macros with const fns * Remove c_int -> c_int cast These should always use the same type alias * Remove duplicate av_strerror definition * Document breaking change
16 lines
396 B
Rust
16 lines
396 B
Rust
#![allow(non_upper_case_globals)]
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(non_snake_case)]
|
|
#![allow(clippy::approx_constant)]
|
|
#![allow(clippy::missing_safety_doc)]
|
|
#![allow(clippy::redundant_static_lifetimes)]
|
|
#![allow(clippy::too_many_arguments)]
|
|
#![allow(clippy::type_complexity)]
|
|
|
|
extern crate libc;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
|
|
|
mod avutil;
|
|
pub use crate::avutil::*;
|