Skip to content

Commit

Permalink
va: add comments for VA_RC_VCM and VA_RC_VBR_CONSTRAINED
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Zhang <[email protected]>
  • Loading branch information
XinfengZhang committed Apr 11, 2024
1 parent 8e834a5 commit 7c98160
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions va/va.h
Original file line number Diff line number Diff line change
Expand Up @@ -1097,11 +1097,14 @@ typedef struct _VAConfigAttrib {
#define VA_RC_CBR 0x00000002
/** \brief Variable bitrate. */
#define VA_RC_VBR 0x00000004
/** \brief Video conference mode. */
/** \brief Video conference mode.
* special VBR mode designed to achieve better bit accuracy and quality
* for video conference like contents */
#define VA_RC_VCM 0x00000008
/** \brief Constant QP. */
#define VA_RC_CQP 0x00000010
/** \brief Variable bitrate with peak rate higher than average bitrate. */
/** \brief Variable bitrate with peak rate higher than average bitrate.
* so , it allow HRD violation to get better quality */
#define VA_RC_VBR_CONSTRAINED 0x00000020
/** \brief Intelligent Constant Quality. Provided an initial ICQ_quality_factor,
* adjusts QP at a frame and MB level based on motion to improve subjective quality. */
Expand Down

0 comments on commit 7c98160

Please sign in to comment.