mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 07:20:10 +01:00
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:
parent
b2b5e83894
commit
2b2914d81f
1 changed files with 1 additions and 1 deletions
|
|
@ -1166,7 +1166,7 @@ radv_GetPhysicalDeviceVideoCapabilitiesKHR(VkPhysicalDevice physicalDevice, cons
|
||||||
|
|
||||||
if (qp_map_caps) {
|
if (qp_map_caps) {
|
||||||
qp_map_caps->minQIndexDelta = -255;
|
qp_map_caps->minQIndexDelta = -255;
|
||||||
qp_map_caps->minQIndexDelta = 255;
|
qp_map_caps->maxQIndexDelta = 255;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue