ffmpeg_the_third/software/resampling/
flag.rs

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