Function av_append_path_component
pub unsafe extern "C" fn av_append_path_component(
path: *const i8,
component: *const i8,
) -> *mut i8
Expand description
Append path component to the existing path. Path separator ‘/’ is placed between when needed. Resulting string have to be freed with av_free(). @param path base path @param component component to be appended @return new path or NULL on error.