#[no_mangle]
pub unsafe extern "C" fn mp4parse_avif_new(
    io: *const Mp4parseIo,
    strictness: ParseStrictness,
    parser_out: *mut *mut Mp4parseAvifParser
) -> Mp4parseStatus
Expand description

Allocate an Mp4parseAvifParser* to read from the supplied Mp4parseIo.

See mp4parse_new; this function is identical except that it allocates an Mp4parseAvifParser, which (when successful) must be paired with a call to mp4parse_avif_free.

Safety

Same as mp4parse_new.