#[unsafe(no_mangle)]pub unsafe extern "C" fn mp4parse_get_track_info(
parser: *mut Mp4parseParser,
track_index: u32,
info: *mut Mp4parseTrackInfo,
) -> Mp4parseStatusExpand description
Fill the supplied Mp4parseTrackInfo with metadata for track.
ยงSafety
This function is unsafe because it dereferences the the parser and info raw
pointers passed to it. Callers should ensure the parser pointer points to a
valid Mp4parseParser and that the info pointer points to a valid
Mp4parseTrackInfo.