diff options
author | Wan-Teh Chang <wtc@google.com> | 2020-04-27 11:53:33 -0700 |
---|---|---|
committer | Wan-Teh Chang <wtc@google.com> | 2020-04-27 11:53:33 -0700 |
commit | 3d28ff98039134325cf689d8d08996fc8dabb225 (patch) | |
tree | 7fa746e60d4415b1643e774329a1b4f84f00981e | |
parent | 94e4341bc06a4fc4fe1fb654a3256cfc3e9ba262 (diff) | |
download | libvpx-3d28ff98039134325cf689d8d08996fc8dabb225.tar libvpx-3d28ff98039134325cf689d8d08996fc8dabb225.tar.gz libvpx-3d28ff98039134325cf689d8d08996fc8dabb225.tar.bz2 libvpx-3d28ff98039134325cf689d8d08996fc8dabb225.zip |
Update a comment on nonexistent vpx_codec_init
Update a comment on the nonexistent vpx_codec_init() function. Replace it
with vpx_codec_dec_init() and vpx_codec_enc_init().
I missed this comment in the last commit.
Change-Id: I1d3614b3bb3aa4330ac6bd49e4d2e1f4e627b6b0
-rw-r--r-- | vpx/internal/vpx_codec_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vpx/internal/vpx_codec_internal.h b/vpx/internal/vpx_codec_internal.h index f01a63e0c..4ef93057f 100644 --- a/vpx/internal/vpx_codec_internal.h +++ b/vpx/internal/vpx_codec_internal.h @@ -68,7 +68,7 @@ typedef struct vpx_codec_priv_enc_mr_cfg vpx_codec_priv_enc_mr_cfg_t; /*!\brief init function pointer prototype * * Performs algorithm-specific initialization of the decoder context. This - * function is called by the generic vpx_codec_init() wrapper function, so + * function is called by vpx_codec_dec_init() and vpx_codec_enc_init(), so * plugins implementing this interface may trust the input parameters to be * properly initialized. * |