]> granicus.if.org Git - libvpx/commitdiff
Fix doc comment mismatch in vpx_frame_buffer.h
authorBrion Vibber <bvibber@wikimedia.org>
Mon, 29 Jan 2018 23:13:09 +0000 (15:13 -0800)
committerBrion Vibber <bvibber@wikimedia.org>
Mon, 29 Jan 2018 23:13:09 +0000 (15:13 -0800)
When compiling an app using libvpx in Xcode 9.2, a warning is
thrown in vpx_frame_buffer.h:

  "Parameter 'new_size' not found in the function declaration"

Switching it to 'min_size' to match the comment text and the
callback type definition prototype resolves it.

Change-Id: I7a3e4a857c2007c2d0d390e22054d7bc85068aa1

vpx/vpx_frame_buffer.h

index ad70cdd572ba217c2c836beb6e16f311a82235e9..ac17c529df0e3106c08029d776b10586d3b00b10 100644 (file)
@@ -57,7 +57,7 @@ typedef struct vpx_codec_frame_buffer {
  * return 0. Any failure the callback must return a value less than 0.
  *
  * \param[in] priv         Callback's private data
- * \param[in] new_size     Size in bytes needed by the buffer
+ * \param[in] min_size     Size in bytes needed by the buffer
  * \param[in,out] fb       Pointer to vpx_codec_frame_buffer_t
  */
 typedef int (*vpx_get_frame_buffer_cb_fn_t)(void *priv, size_t min_size,