pub unsafe fn av_make_error_string(
errbuf: *mut c_char,
errbuf_size: size_t,
errnum: c_int,
) -> *mut c_charExpand description
Fills the errbuf with a description for errnum or a generic message
if no specific description can be found.
The returned C-string will be null-terminated.
ยงSafety
errbuf and errbuf_size must describe a valid C-style char array, i.e.
errbufmust be non-null and well-aligned anderrbufmust be valid forerrbuf_sizereads/writes.