Files
ffmpeg-the-third/ffmpeg-sys-the-third/src/avutil/util.rs
FreezyLemon 7a8643f2cc Migrate crates to Rust edition 2021 (#24)
* Migrate ffmpeg-sys to Edition 2021

* Migrate ffmpeg to Edition 2021

* Remove now-redundant imports

* Reorder imports after edition migration
2024-04-06 21:31:36 -04:00

9 lines
218 B
Rust

use libc::c_int;
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 as c_int,
};