From b1cf64c40b66047ab8b525cbfb70e6366a46c228 Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Sat, 11 May 2024 08:24:49 -0700 Subject: [PATCH] vpx_decoder.h: Change "size member" to "sz member" That member of vpx_codec_stream_info_t is named "sz", not "size". Change-Id: I6cc878709d9dae37b9911cf746ba248a06ec1b1a --- vpx/vpx_decoder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpx/vpx_decoder.h b/vpx/vpx_decoder.h index 0e9611e31f8..e2c31ea780f 100644 --- a/vpx/vpx_decoder.h +++ b/vpx/vpx_decoder.h @@ -152,7 +152,7 @@ vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx, * \param[in] iface Pointer to the algorithm interface * \param[in] data Pointer to a block of data to parse * \param[in] data_sz Size of the data buffer - * \param[in,out] si Pointer to stream info to update. The size member + * \param[in,out] si Pointer to stream info to update. The sz member * \ref MUST be properly initialized, but \ref MAY be * clobbered by the algorithm. This parameter \ref MAY * be NULL. @@ -170,7 +170,7 @@ vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface, * 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. The size member + * \param[in,out] si Pointer to stream info to update. The sz member * \ref MUST be properly initialized, but \ref MAY be * clobbered by the algorithm. This parameter \ref MAY * be NULL.