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

va: Add VAConfigAttribEncMaxTileRows and VAConfigAttribEncMaxTileCols #757

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
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
14 changes: 14 additions & 0 deletions va/va.h
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,20 @@ typedef enum {
* The value returned uses the VAConfigAttribValEncPerBlockControl type.
*/
VAConfigAttribEncPerBlockControl = 55,
/**
* \brief Maximum number of tile rows. Read-only.
*
* This attribute determines the maximum number of tile
* rows supported for encoding with tile support.
*/
VAConfigAttribEncMaxTileRows = 56,
/**
* \brief Maximum number of tile cols. Read-only.
*
* This attribute determines the maximum number of tile
* columns supported for encoding with tile support.
*/
VAConfigAttribEncMaxTileCols = 57,
/**@}*/
VAConfigAttribTypeMax
} VAConfigAttribType;
Expand Down
2 changes: 2 additions & 0 deletions va/va_str.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ const char *vaConfigAttribTypeStr(VAConfigAttribType configAttribType)
TOSTR(VAConfigAttribEncAV1Ext1);
TOSTR(VAConfigAttribEncAV1Ext2);
TOSTR(VAConfigAttribEncPerBlockControl);
TOSTR(VAConfigAttribEncMaxTileRows);
TOSTR(VAConfigAttribEncMaxTileCols);
case VAConfigAttribTypeMax:
break;
}
Expand Down