ffmpeg_next/codec/decoder/
check.rs

1use ffi::*;
2use libc::c_int;
3
4bitflags! {
5    #[derive(Copy, Clone, Debug, PartialEq, Eq)]
6    pub struct Check: c_int {
7        const CRC      = AV_EF_CRCCHECK;
8        const BISTREAM = AV_EF_BITSTREAM;
9        const BUFFER   = AV_EF_BUFFER;
10        const EXPLODE  = AV_EF_EXPLODE;
11
12        const IGNORE_ERROR = AV_EF_IGNORE_ERR;
13        const CAREFUL      = AV_EF_CAREFUL;
14        const COMPLIANT    = AV_EF_COMPLIANT;
15        const AGGRESSIVE   = AV_EF_AGGRESSIVE;
16    }
17}