ffmpeg_dev/
api.rs

1#![allow(unused)]
2#![allow(non_snake_case)]
3#![allow(non_upper_case_globals)]
4#![allow(non_camel_case_types)]
5#![allow(improper_ctypes)]
6#![allow(safe_packed_borrows)]
7//! Experimental, alternative FFI bindings.
8//! 
9//! Experimenting with semi manual API bindings here, since it seems as though
10//! `ffmpeg_dev::sys` is too big for RLS. Or rather, because RLS sometimes
11//! really, really, really sucks.
12//! 
13//! Notes:
14//! * **Be advised, exported API yet not stable. Prefer directly using symbols from the `ffmpeg_dev::sys` module over this one.**
15//! * Also note that this will be be incomplete.
16//! 
17//! UPDATE:
18//! * Things have improved a bit since removing autogenerated layout tests from `ffmpeg_dev::sys`.
19//! * **Consider this module deprecated for now.**
20
21// pub mod avcodec;
22// pub mod avdevice;
23// pub mod avfilter;
24// pub mod avformat;
25// pub mod avutil;
26// pub mod avresample;
27// pub mod swresample;
28// pub mod swscale;
29