summaryrefslogtreecommitdiff
path: root/vpx
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-01-15 14:32:42 -0800
committerYaowu Xu <yaowu@google.com>2015-01-15 15:12:27 -0800
commitf5bbe244aa7f7c69b80e85c848d8974df5004555 (patch)
treec6973ccf0ca6755443c4722ba9e2f9c34afbfc4e /vpx
parent1be4267ec21e3235027f83e7442c25e7eefbd836 (diff)
downloadlibvpx-f5bbe244aa7f7c69b80e85c848d8974df5004555.tar
libvpx-f5bbe244aa7f7c69b80e85c848d8974df5004555.tar.gz
libvpx-f5bbe244aa7f7c69b80e85c848d8974df5004555.tar.bz2
libvpx-f5bbe244aa7f7c69b80e85c848d8974df5004555.zip
Fix obvious misses in doxygen mainpage
Change-Id: I0537769904f0853c9299b36a91391f289acf442c
Diffstat (limited to 'vpx')
-rw-r--r--vpx/vp8cx.h15
-rw-r--r--vpx/vp8dx.h14
2 files changed, 18 insertions, 11 deletions
diff --git a/vpx/vp8cx.h b/vpx/vp8cx.h
index 75caad8ba..a920ee3f9 100644
--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -10,7 +10,7 @@
#ifndef VPX_VP8CX_H_
#define VPX_VP8CX_H_
-/*!\defgroup vp8_encoder WebM VP8 Encoder
+/*!\defgroup vp8_encoder WebM VP8/VP9 Encoder
* \ingroup vp8
*
* @{
@@ -18,7 +18,7 @@
#include "./vp8.h"
/*!\file
- * \brief Provides definitions for using the VP8 encoder algorithm within the
+ * \brief Provides definitions for using VP8 or VP9 encoder algorithm within the
* vpx Codec Interface.
*/
@@ -28,17 +28,20 @@ extern "C" {
/*!\name Algorithm interface for VP8
*
- * This interface provides the capability to encode raw VP8 streams, as would
- * be found in AVI files.
+ * This interface provides the capability to encode raw VP8 streams.
* @{
*/
extern vpx_codec_iface_t vpx_codec_vp8_cx_algo;
extern vpx_codec_iface_t *vpx_codec_vp8_cx(void);
+/*!@} - end algorithm interface member group*/
-/* TODO(jkoleszar): These move to VP9 in a later patch set. */
+/*!\name Algorithm interface for VP9
+ *
+ * This interface provides the capability to encode raw VP9 streams.
+ * @{
+ */
extern vpx_codec_iface_t vpx_codec_vp9_cx_algo;
extern vpx_codec_iface_t *vpx_codec_vp9_cx(void);
-
/*!@} - end algorithm interface member group*/
diff --git a/vpx/vp8dx.h b/vpx/vp8dx.h
index c5475c478..3ba72fe3c 100644
--- a/vpx/vp8dx.h
+++ b/vpx/vp8dx.h
@@ -9,13 +9,13 @@
*/
-/*!\defgroup vp8_decoder WebM VP8 Decoder
+/*!\defgroup vp8_decoder WebM VP8/VP9 Decoder
* \ingroup vp8
*
* @{
*/
/*!\file
- * \brief Provides definitions for using the VP8 algorithm within the vpx Decoder
+ * \brief Provides definitions for using VP8 or VP9 within the vpx Decoder
* interface.
*/
#ifndef VPX_VP8DX_H_
@@ -30,14 +30,18 @@ extern "C" {
/*!\name Algorithm interface for VP8
*
- * This interface provides the capability to decode raw VP8 streams, as would
- * be found in AVI files and other non-Flash uses.
+ * This interface provides the capability to decode VP8 streams.
* @{
*/
extern vpx_codec_iface_t vpx_codec_vp8_dx_algo;
extern vpx_codec_iface_t *vpx_codec_vp8_dx(void);
+/*!@} - end algorithm interface member group*/
-/* TODO(jkoleszar): These move to VP9 in a later patch set. */
+/*!\name Algorithm interface for VP9
+ *
+ * This interface provides the capability to decode VP9 streams.
+ * @{
+ */
extern vpx_codec_iface_t vpx_codec_vp9_dx_algo;
extern vpx_codec_iface_t *vpx_codec_vp9_dx(void);
/*!@} - end algorithm interface member group*/