Skip to content

Commit

Permalink
vpx_decoder.h: Change "size member" to "sz member"
Browse files Browse the repository at this point in the history
That member of vpx_codec_stream_info_t is named "sz", not "size".

Change-Id: I6cc878709d9dae37b9911cf746ba248a06ec1b1a
  • Loading branch information
wantehchang committed May 13, 2024
1 parent 498097b commit b1cf64c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpx/vpx_decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit b1cf64c

Please sign in to comment.