ffmpeg-next 8.1.0

Safe FFmpeg wrapper (FFmpeg 4 compatible fork of the ffmpeg crate)
Documentation
1
2
3
4
5
6
7
8
9
10
11
use ffi::*;
use libc::c_int;

bitflags! {
    #[derive(Copy, Clone, Debug, PartialEq, Eq)]
    pub struct Flags: c_int {
        const CODED_ORDER = SLICE_FLAG_CODED_ORDER;
        const ALLOW_FIELD = SLICE_FLAG_ALLOW_FIELD;
        const ALLOW_PLANE = SLICE_FLAG_ALLOW_PLANE;
    }
}