aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2024-05-01 12:45:53 -0700
committerJames Zern <jzern@google.com>2024-05-01 13:24:59 -0700
commit7a0089dc0855645547437c2679576fc56b692c8a (patch)
tree22dbe7f89eb1cfccaa670e48c0ab85fb3c5ca464
parentf93e6aa33390b48d501bd6fcf2d52de7ae926b68 (diff)
downloadlibvpx-7a0089dc0855645547437c2679576fc56b692c8a.tar.gz
vpx_ext_ratectrl.h: fix doxygen comments
fixes a few warnings about undocumented members update_type, update_ref_index and ref_frame_list. Change-Id: I668c61f6a511ba9e6c0907f6dafb0be614678e60
-rw-r--r--vpx/vpx_ext_ratectrl.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/vpx/vpx_ext_ratectrl.h b/vpx/vpx_ext_ratectrl.h
index a39b4647b..0f438efb4 100644
--- a/vpx/vpx_ext_ratectrl.h
+++ b/vpx/vpx_ext_ratectrl.h
@@ -367,13 +367,15 @@ typedef struct vpx_rc_gop_decision {
int gop_coding_frames; /**< The number of frames of this GOP */
int use_alt_ref; /**< Whether to use alt ref for this GOP */
int use_key_frame; /**< Whether to set key frame for this GOP */
- // Frame type for each frame in this GOP.
- // This will be populated to |update_type| in GF_GROUP defined in
- // vp9_firstpass.h
+ /*!
+ * Frame type for each frame in this GOP.
+ * This will be populated to |update_type| in GF_GROUP defined in
+ * vp9_firstpass.h
+ */
vpx_rc_frame_update_type_t update_type[VPX_RC_MAX_STATIC_GF_GROUP_LENGTH + 2];
- // Ref frame buffer index to be updated for each frame in this GOP.
+ /*! Ref frame buffer index to be updated for each frame in this GOP. */
int update_ref_index[VPX_RC_MAX_STATIC_GF_GROUP_LENGTH + 2];
- // Ref frame list to be used for each frame in this GOP.
+ /*! Ref frame list to be used for each frame in this GOP. */
vpx_rc_ref_frame_t ref_frame_list[VPX_RC_MAX_STATIC_GF_GROUP_LENGTH + 2];
} vpx_rc_gop_decision_t;