diff --git a/.pick_status.json b/.pick_status.json index 94275d3238e..7ada2da3a3f 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -34,7 +34,7 @@ "description": "radv/video: Enable AV1 decode workaround for gfx1153", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/amd/vulkan/radv_video.c b/src/amd/vulkan/radv_video.c index e16a96976eb..02d4685af22 100644 --- a/src/amd/vulkan/radv_video.c +++ b/src/amd/vulkan/radv_video.c @@ -2333,6 +2333,8 @@ get_av1_msg(struct radv_device *device, struct radv_video_session *vid, struct r result.tile_info[i].size = av1_pic_info->pTileSizes[i]; } + result.av1_intrabc_workaround = pdev->info.family == CHIP_GFX1153; + return result; }