ffmpeg_next/software/resampling/
flag.rs

1use ffi::*;
2use libc::c_int;
3
4bitflags! {
5    #[derive(Copy, Clone, Debug, PartialEq, Eq)]
6    pub struct Flags: c_int {
7        const FORCE = SWR_FLAG_RESAMPLE;
8    }
9}