1
2
3
4
5
6
7
8
use ffi::*;
use libc::c_int;

bitflags! {
    pub struct Flags: c_int {
        const FORCED = AV_SUBTITLE_FLAG_FORCED;
    }
}