Merge "Fix comments for doxygen"

This commit is contained in:
Yaowu Xu 2015-01-15 10:46:20 -08:00 committed by Gerrit Code Review
commit 199951bd61

View File

@ -232,8 +232,8 @@ extern "C" {
/*!\brief Callback function pointer / user data pair storage */ /*!\brief Callback function pointer / user data pair storage */
typedef struct vpx_codec_enc_output_cx_cb_pair { typedef struct vpx_codec_enc_output_cx_cb_pair {
vpx_codec_enc_output_cx_pkt_cb_fn_t output_cx_pkt; vpx_codec_enc_output_cx_pkt_cb_fn_t output_cx_pkt; /**< Callback function */
void *user_priv; void *user_priv; /**< Pointer to private data */
} vpx_codec_priv_output_cx_pkt_cb_pair_t; } vpx_codec_priv_output_cx_pkt_cb_pair_t;
/*!\brief Rational Number /*!\brief Rational Number
@ -737,10 +737,10 @@ extern "C" {
* *
*/ */
typedef struct vpx_svc_parameters { typedef struct vpx_svc_parameters {
int max_quantizers[VPX_SS_MAX_LAYERS]; int max_quantizers[VPX_SS_MAX_LAYERS]; /**< Max Q for each layer */
int min_quantizers[VPX_SS_MAX_LAYERS]; int min_quantizers[VPX_SS_MAX_LAYERS]; /**< Min Q for each layer */
int scaling_factor_num[VPX_SS_MAX_LAYERS]; int scaling_factor_num[VPX_SS_MAX_LAYERS]; /**< Scaling factor-numerator*/
int scaling_factor_den[VPX_SS_MAX_LAYERS]; int scaling_factor_den[VPX_SS_MAX_LAYERS]; /**< Scaling factor-denominator*/
} vpx_svc_extra_cfg_t; } vpx_svc_extra_cfg_t;