summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-01-15 10:46:20 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2015-01-15 10:46:20 -0800
commit199951bd61d1860a5fc3320f9c6301109adec5f4 (patch)
treec1a760cfa5bbb46343e836378bbdad0e303b8c21
parentd3ccb3fe2eb1af8ceea0ed267c4a118e0253ebff (diff)
parent9ace4f9e998179a0e0a32bdb5abaec4a27fe9d8e (diff)
downloadlibvpx-199951bd61d1860a5fc3320f9c6301109adec5f4.tar
libvpx-199951bd61d1860a5fc3320f9c6301109adec5f4.tar.gz
libvpx-199951bd61d1860a5fc3320f9c6301109adec5f4.tar.bz2
libvpx-199951bd61d1860a5fc3320f9c6301109adec5f4.zip
Merge "Fix comments for doxygen"
-rw-r--r--vpx/vpx_encoder.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/vpx/vpx_encoder.h b/vpx/vpx_encoder.h
index da5bd0659..8f7bff518 100644
--- a/vpx/vpx_encoder.h
+++ b/vpx/vpx_encoder.h
@@ -232,8 +232,8 @@ extern "C" {
/*!\brief Callback function pointer / user data pair storage */
typedef struct vpx_codec_enc_output_cx_cb_pair {
- vpx_codec_enc_output_cx_pkt_cb_fn_t output_cx_pkt;
- void *user_priv;
+ vpx_codec_enc_output_cx_pkt_cb_fn_t output_cx_pkt; /**< Callback function */
+ void *user_priv; /**< Pointer to private data */
} vpx_codec_priv_output_cx_pkt_cb_pair_t;
/*!\brief Rational Number
@@ -737,10 +737,10 @@ extern "C" {
*
*/
typedef struct vpx_svc_parameters {
- int max_quantizers[VPX_SS_MAX_LAYERS];
- int min_quantizers[VPX_SS_MAX_LAYERS];
- int scaling_factor_num[VPX_SS_MAX_LAYERS];
- int scaling_factor_den[VPX_SS_MAX_LAYERS];
+ int max_quantizers[VPX_SS_MAX_LAYERS]; /**< Max Q for each layer */
+ int min_quantizers[VPX_SS_MAX_LAYERS]; /**< Min Q for each layer */
+ int scaling_factor_num[VPX_SS_MAX_LAYERS]; /**< Scaling factor-numerator*/
+ int scaling_factor_den[VPX_SS_MAX_LAYERS]; /**< Scaling factor-denominator*/
} vpx_svc_extra_cfg_t;