#![deny(unsafe_op_in_unsafe_fn)]
#![allow(clippy::module_inception)]
#![allow(clippy::upper_case_acronyms)]
#![allow(clippy::doc_overindented_list_items)]
pub use rusty_ffmpeg::ffi;
#[macro_use]
mod macros;
mod shared;
pub mod avcodec;
pub mod avdevice;
pub mod avfilter;
pub mod avformat;
pub mod avutil;
pub mod swresample;
pub mod swscale;
pub mod error;
pub use shared::{build_array, UnsafeDerefMut};