
* Migrate ffmpeg-sys to Edition 2021 * Migrate ffmpeg to Edition 2021 * Remove now-redundant imports * Reorder imports after edition migration
17 lines
434 B
Rust
17 lines
434 B
Rust
use crate::ffi::*;
|
|
use libc::c_int;
|
|
|
|
bitflags! {
|
|
pub struct Check: c_int {
|
|
const CRC = AV_EF_CRCCHECK;
|
|
const BISTREAM = AV_EF_BITSTREAM;
|
|
const BUFFER = AV_EF_BUFFER;
|
|
const EXPLODE = AV_EF_EXPLODE;
|
|
|
|
const IGNORE_ERROR = AV_EF_IGNORE_ERR;
|
|
const CAREFUL = AV_EF_CAREFUL;
|
|
const COMPLIANT = AV_EF_COMPLIANT;
|
|
const AGGRESSIVE = AV_EF_AGGRESSIVE;
|
|
}
|
|
}
|