pub unsafe extern "C" fn av_dict_set_int(
pm: *mut *mut AVDictionary,
key: *const c_char,
value: i64,
flags: c_int,
) -> c_int
Expand description
Convenience wrapper for av_dict_set that converts the value to a string and stores it.
Note: If AV_DICT_DONT_STRDUP_KEY is set, key will be freed on error.