radv/video: Fix AV1 quantization map maxQIndexDelta value

Fixes: ae6ea69c85 ("radv: Implement VK_KHR_video_encode_quantization_map")
Reviewed-by: Benjamin Cheng <benjamin.cheng@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38745>
This commit is contained in:
David Rosca 2025-12-01 15:30:44 +01:00 committed by Marge Bot
parent b2b5e83894
commit 2b2914d81f

View file

@ -1166,7 +1166,7 @@ radv_GetPhysicalDeviceVideoCapabilitiesKHR(VkPhysicalDevice physicalDevice, cons
if (qp_map_caps) {
qp_map_caps->minQIndexDelta = -255;
qp_map_caps->minQIndexDelta = 255;
qp_map_caps->maxQIndexDelta = 255;
}
break;
}