summaryrefslogtreecommitdiff
path: root/vpx/internal/vpx_codec_internal.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-07-11 12:23:28 -0700
committerJames Zern <jzern@google.com>2013-07-11 12:23:28 -0700
commit43dc0f888632948118bd356649b18e3e35ef6fa8 (patch)
treeeab0308b2de1aa2298717dc50cb8964c4477cd88 /vpx/internal/vpx_codec_internal.h
parentc9b25dcae4f492b558f2025d96664f4d4b2b42ea (diff)
downloadlibvpx-43dc0f888632948118bd356649b18e3e35ef6fa8.tar
libvpx-43dc0f888632948118bd356649b18e3e35ef6fa8.tar.gz
libvpx-43dc0f888632948118bd356649b18e3e35ef6fa8.tar.bz2
libvpx-43dc0f888632948118bd356649b18e3e35ef6fa8.zip
small update to peek_si/get_si documentation
correct a doxygen and function reference Change-Id: I525371d64969aa60c464d0f6a133bc29895d7991
Diffstat (limited to 'vpx/internal/vpx_codec_internal.h')
-rw-r--r--vpx/internal/vpx_codec_internal.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/vpx/internal/vpx_codec_internal.h b/vpx/internal/vpx_codec_internal.h
index d7bcd4620..0b057de4c 100644
--- a/vpx/internal/vpx_codec_internal.h
+++ b/vpx/internal/vpx_codec_internal.h
@@ -94,9 +94,10 @@ typedef vpx_codec_err_t (*vpx_codec_destroy_fn_t)(vpx_codec_alg_priv_t *ctx);
/*!\brief parse stream info function pointer prototype
*
- * Performs high level parsing of the bitstream. This function is called by
- * the generic vpx_codec_parse_stream() wrapper function, so plugins implementing
- * this interface may trust the input parameters to be properly initialized.
+ * Performs high level parsing of the bitstream. This function is called by the
+ * generic vpx_codec_peek_stream_info() wrapper function, so plugins
+ * implementing this interface may trust the input parameters to be properly
+ * initialized.
*
* \param[in] data Pointer to a block of data to parse
* \param[in] data_sz Size of the data buffer
@@ -301,7 +302,7 @@ struct vpx_codec_iface {
vpx_codec_set_mmap_fn_t set_mmap; /**< \copydoc ::vpx_codec_set_mmap_fn_t */
struct vpx_codec_dec_iface {
vpx_codec_peek_si_fn_t peek_si; /**< \copydoc ::vpx_codec_peek_si_fn_t */
- vpx_codec_get_si_fn_t get_si; /**< \copydoc ::vpx_codec_peek_si_fn_t */
+ vpx_codec_get_si_fn_t get_si; /**< \copydoc ::vpx_codec_get_si_fn_t */
vpx_codec_decode_fn_t decode; /**< \copydoc ::vpx_codec_decode_fn_t */
vpx_codec_get_frame_fn_t get_frame; /**< \copydoc ::vpx_codec_get_frame_fn_t */
} dec;