avutil/log: fix av_log type

This commit is contained in:
meh
2023-05-24 21:49:22 +02:00
committed by Till Höppner
parent 77fdeb479c
commit 3e36ce4076
+1 -1
View File
@@ -78,7 +78,7 @@ pub fn AV_LOG_C(x: c_int) -> c_int {
}
extern {
pub fn av_log(avcl: *mut c_void, level: c_int, fmt: *const char, ...);
pub fn av_log(avcl: *mut c_void, level: c_int, fmt: *const c_char, ...);
//pub fn av_vlog(avcl: *mut c_void, level: c_int, fmt: *const c_char, vl: va_list);
pub fn av_log_get_level() -> c_int;
pub fn av_log_set_level(level: c_int);