ffmpeg_the_third/codec/decoder/
check.rs

1use crate::ffi::*;
2use libc::c_int;
3
4bitflags::bitflags! {
5    pub struct Check: c_int {
6        const CRC      = AV_EF_CRCCHECK;
7        const BITSTREAM = AV_EF_BITSTREAM;
8        const BUFFER   = AV_EF_BUFFER;
9        const EXPLODE  = AV_EF_EXPLODE;
10
11        const IGNORE_ERROR = AV_EF_IGNORE_ERR;
12        const CAREFUL      = AV_EF_CAREFUL;
13        const COMPLIANT    = AV_EF_COMPLIANT;
14        const AGGRESSIVE   = AV_EF_AGGRESSIVE;
15    }
16}