Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecate VA_RC_MB #808

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions va/va.h
Original file line number Diff line number Diff line change
Expand Up @@ -1097,17 +1097,21 @@ 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. */
#define VA_RC_ICQ 0x00000040
/** \brief Macroblock based rate control. Per MB control is decided
* internally in the encoder. It may be combined with other RC modes, except CQP. */
* internally in the encoder. It may be combined with other RC modes, except CQP.
* @deprecated , it is decided internally in driver, driver should enable/disable it internally*/
#define VA_RC_MB 0x00000080
/** \brief Constant Frame Size, it is used for small tolerent */
#define VA_RC_CFS 0x00000100
Expand Down