From 638fa0120354ff66b09be23e3d3b9e656c994344 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Mon, 11 Aug 2025 17:02:50 +0200 Subject: [PATCH] radv/video: Enable AV1 decode workaround for gfx1153 Cc: mesa-stable Reviewed-by: Ruijing Dong Part-of: --- src/amd/vulkan/radv_video.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/amd/vulkan/radv_video.c b/src/amd/vulkan/radv_video.c index 3d732e8603b..46783b8d76c 100644 --- a/src/amd/vulkan/radv_video.c +++ b/src/amd/vulkan/radv_video.c @@ -2334,6 +2334,8 @@ get_av1_msg(struct radv_device *device, struct radv_video_session *vid, struct v result.tile_info[i].size = av1_pic_info->pTileSizes[i]; } + result.av1_intrabc_workaround = pdev->info.family == CHIP_GFX1153; + return result; }