1use ffi::*; 2use libc::c_int; 3 4bitflags! { 5 pub struct Flags: c_int { 6 const FORCED = AV_SUBTITLE_FLAG_FORCED; 7 } 8}