[FFmpeg-cvslog] hwcontext_vulkan: disable validation layer threading warnings

Lynne git at videolan.org
Sun Dec 22 21:25:52 EET 2024


ffmpeg | branch: master | Lynne <dev at lynne.ee> | Wed Dec 18 14:33:50 2024 +0900| [4ca2b86ed54fbd0ffcfd74fd4e8bd3055bd12dcf] | committer: Lynne

hwcontext_vulkan: disable validation layer threading warnings

The layer is buggy currently:
https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/9045

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4ca2b86ed54fbd0ffcfd74fd4e8bd3055bd12dcf
---

 libavutil/hwcontext_vulkan.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index 5601ef4d9e..6eca097ea3 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -626,6 +626,7 @@ static VkBool32 VKAPI_CALL vk_dbg_callback(VkDebugUtilsMessageSeverityFlagBitsEX
     case 0xfd92477a: /* BestPractices-vkAllocateMemory-small-allocation */
     case 0x618ab1e7: /* VUID-VkImageViewCreateInfo-usage-02275 */
     case 0x30f4ac70: /* VUID-VkImageCreateInfo-pNext-06811 */
+    case 0xa05b236e: /* UNASSIGNED-Threading-MultipleThreads-Write */
         return VK_FALSE;
     default:
         break;



More information about the ffmpeg-cvslog mailing list