#[unsafe(no_mangle)]pub unsafe extern "C" fn mp4parse_get_track_audio_info(
parser: *mut Mp4parseParser,
track_index: u32,
info: *mut Mp4parseTrackAudioInfo,
) -> Mp4parseStatusExpand description
Fill the supplied Mp4parseTrackAudioInfo 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
Mp4parseTrackAudioInfo.