#[unsafe(no_mangle)]pub unsafe extern "C" fn mp4parse_avif_get_indice_table(
parser: *mut Mp4parseAvifParser,
track_id: u32,
indices: *mut Mp4parseByteData,
timescale: *mut u64,
) -> Mp4parseStatusExpand description
Fill the supplied Mp4parseByteData with index information from track.
ยงSafety
This function is unsafe because it dereferences both the parser and
indices raw pointers passed to it. Callers should ensure the parser
points to a valid Mp4parseAvifParser and indices points to a valid
Mp4parseByteData.