mp4parse_get_track_count

Function mp4parse_get_track_count 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn mp4parse_get_track_count( parser: *const Mp4parseParser, count: *mut u32, ) -> Mp4parseStatus
Expand description

Return the number of tracks parsed by previous mp4parse_read() call.

ยงSafety

This function is unsafe because it dereferences both the parser and count raw pointers passed into it. Callers should ensure the parser pointer points to a valid Mp4parseParser, and that the count pointer points an appropriate memory location to have a u32 written to.