mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 20:58:04 +02:00
anv: Fix tiling for H.265 and VP9 video surfaces on GFX 12.5+
Cc: mesa-stable
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35927>
(cherry picked from commit 07097c84ca)
This commit is contained in:
parent
a2e16d0aea
commit
d8d6f3ef6f
3 changed files with 13 additions and 1 deletions
|
|
@ -184,7 +184,7 @@
|
|||
"description": "anv: Fix tiling for H.265 and VP9 video surfaces on GFX 12.5+",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null,
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -254,6 +254,9 @@ anv_h265_decode_video(struct anv_cmd_buffer *cmd_buffer,
|
|||
|
||||
buf.DecodedPictureMemoryAddressAttributes = (struct GENX(MEMORYADDRESSATTRIBUTES)) {
|
||||
.MOCS = anv_mocs(cmd_buffer->device, buf.DecodedPictureAddress.bo, 0),
|
||||
#if GFX_VERx10 >= 125
|
||||
.TiledResourceMode = TRMODE_TILEF,
|
||||
#endif
|
||||
};
|
||||
|
||||
buf.DeblockingFilterLineBufferAddress = (struct anv_address) {
|
||||
|
|
@ -360,6 +363,9 @@ anv_h265_decode_video(struct anv_cmd_buffer *cmd_buffer,
|
|||
|
||||
buf.ReferencePictureMemoryAddressAttributes = (struct GENX(MEMORYADDRESSATTRIBUTES)) {
|
||||
.MOCS = anv_mocs(cmd_buffer->device, NULL, 0),
|
||||
#if GFX_VERx10 >= 125
|
||||
.TiledResourceMode = TRMODE_TILEF,
|
||||
#endif
|
||||
};
|
||||
|
||||
buf.OriginalUncompressedPictureSourceMemoryAddressAttributes = (struct GENX(MEMORYADDRESSATTRIBUTES)) {
|
||||
|
|
|
|||
|
|
@ -1496,6 +1496,9 @@ anv_h265_encode_video(struct anv_cmd_buffer *cmd, const VkVideoEncodeInfoKHR *en
|
|||
|
||||
buf.DecodedPictureMemoryAddressAttributes = (struct GENX(MEMORYADDRESSATTRIBUTES)) {
|
||||
.MOCS = anv_mocs(cmd->device, buf.DecodedPictureAddress.bo, 0),
|
||||
#if GFX_VERx10 >= 125
|
||||
.TiledResourceMode = TRMODE_TILEF,
|
||||
#endif
|
||||
};
|
||||
|
||||
buf.DeblockingFilterLineBufferAddress = (struct anv_address) {
|
||||
|
|
@ -1599,6 +1602,9 @@ anv_h265_encode_video(struct anv_cmd_buffer *cmd, const VkVideoEncodeInfoKHR *en
|
|||
|
||||
buf.ReferencePictureMemoryAddressAttributes = (struct GENX(MEMORYADDRESSATTRIBUTES)) {
|
||||
.MOCS = anv_mocs(cmd->device, NULL, 0),
|
||||
#if GFX_VERx10 >= 125
|
||||
.TiledResourceMode = TRMODE_TILEF,
|
||||
#endif
|
||||
};
|
||||
|
||||
buf.OriginalUncompressedPictureSourceAddress =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue