use crate::ffi::*;
use libc::c_int;
bitflags::bitflags! {
pub struct Flags: c_int {
const MATCH_CASE = AV_DICT_MATCH_CASE;
const IGNORE_SUFFIX = AV_DICT_IGNORE_SUFFIX;
const DONT_STRDUP_KEY = AV_DICT_DONT_STRDUP_KEY;
const DONT_STRDUP_VAL = AV_DICT_DONT_STRDUP_VAL;
const DONT_OVERWRITE = AV_DICT_DONT_OVERWRITE;
const APPEND = AV_DICT_APPEND;
const MULTIKEY = AV_DICT_MULTIKEY;
}
}