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