ffmpeg-the-third 5.0.0+ffmpeg-8.1

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

bitflags::bitflags! {
    pub struct Flags: c_uint {
        const SYNCHRONOUS = AV_CODEC_RECEIVE_FRAME_FLAG_SYNCHRONOUS as c_uint;
    }
}