ffmpeg-sys-the-third 5.0.0+ffmpeg-8.1

FFI bindings to FFmpeg
Documentation
1
2
3
4
5
6
7
use crate::{AVRational, AV_TIME_BASE};

pub const AV_NOPTS_VALUE: i64 = 0x8000000000000000u64 as i64;
pub const AV_TIME_BASE_Q: AVRational = AVRational {
    num: 1,
    den: AV_TIME_BASE,
};