codec/subtitle/flag: change flags API style

This commit is contained in:
meh
2015-05-28 18:14:41 +02:00
parent c389f7a916
commit f465f62105
2 changed files with 12 additions and 7 deletions

View File

@ -0,0 +1,8 @@
use libc::c_int;
use ffi::*;
bitflags! {
flags Flags: c_int {
const FORCED = AV_SUBTITLE_FLAG_FORCED,
}
}