pub unsafe extern "C" fn aom_codec_get_stream_info(
    ctx: *mut aom_codec_ctx_t,
    si: *mut aom_codec_stream_info_t
) -> aom_codec_err_t
Expand description

Return information about the current stream.

Returns information about the stream that has been parsed during decoding.

\param[in] ctx Pointer to this instance’s context \param[in,out] si Pointer to stream info to update.

\retval #AOM_CODEC_OK Bitstream is parsable and stream information updated. \retval #AOM_CODEC_INVALID_PARAM One of the arguments is invalid, for example a NULL pointer. \retval #AOM_CODEC_UNSUP_BITSTREAM The decoder couldn’t parse the submitted data.