summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-01-15 13:40:16 -0800
committerYaowu Xu <yaowu@google.com>2015-01-15 13:40:16 -0800
commit1be4267ec21e3235027f83e7442c25e7eefbd836 (patch)
tree6bf313ad94120acc8a28e02b5439e7a263c94609
parent7ef157cccec52657529495206383331c279397f1 (diff)
downloadlibvpx-1be4267ec21e3235027f83e7442c25e7eefbd836.tar
libvpx-1be4267ec21e3235027f83e7442c25e7eefbd836.tar.gz
libvpx-1be4267ec21e3235027f83e7442c25e7eefbd836.tar.bz2
libvpx-1be4267ec21e3235027f83e7442c25e7eefbd836.zip
Fix color_space enum comments for doxygen
Change-Id: I14f1708908a0b68b7f4c8e039dbec138c14c5ae4
-rw-r--r--vpx/vpx_image.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/vpx/vpx_image.h b/vpx/vpx_image.h
index 3f54e2147..c06d35101 100644
--- a/vpx/vpx_image.h
+++ b/vpx/vpx_image.h
@@ -68,14 +68,14 @@ extern "C" {
/*!\brief List of supported color spaces */
typedef enum vpx_color_space {
- VPX_CS_UNKNOWN = 0, // Unknown
- VPX_CS_BT_601 = 1, // BT.601
- VPX_CS_BT_709 = 2, // BT.709
- VPX_CS_SMPTE_170 = 3, // SMPTE.170
- VPX_CS_SMPTE_240 = 4, // SMPTE.240
- VPX_CS_BT_2020 = 5, // BT.2020
- VPX_CS_RESERVED = 6, // Reserved
- VPX_CS_SRGB = 7 // sRGB
+ VPX_CS_UNKNOWN = 0, /**< Unknown */
+ VPX_CS_BT_601 = 1, /**< BT.601 */
+ VPX_CS_BT_709 = 2, /**< BT.709 */
+ VPX_CS_SMPTE_170 = 3, /**< SMPTE.170 */
+ VPX_CS_SMPTE_240 = 4, /**< SMPTE.240 */
+ VPX_CS_BT_2020 = 5, /**< BT.2020 */
+ VPX_CS_RESERVED = 6, /**< Reserved */
+ VPX_CS_SRGB = 7 /**< sRGB */
} vpx_color_space_t; /**< alias for enum vpx_color_space */
/**\brief Image Descriptor */