util/frame: make Flags a c_int for compatibility

This commit is contained in:
meh 2015-05-16 17:27:42 +02:00
parent bcde567734
commit bdc4c427a8

View File

@ -14,7 +14,7 @@ use ::picture;
use ::color;
bitflags! {
flags Flags: i32 {
flags Flags: c_int {
const FLAG_CORRUPT = AV_FRAME_FLAG_CORRUPT,
}
}