The branch, master has been updated
       via  7d0483e6a7a72f2b3a86873e6e580c90ca661fce (commit)
      from  f7aaa8ecb51a5b7d54e6cfb61c15009939a40820 (commit)


- Log -----------------------------------------------------------------
commit 7d0483e6a7a72f2b3a86873e6e580c90ca661fce
Author:     Lynne <[email protected]>
AuthorDate: Thu Nov 27 03:10:42 2025 +0100
Commit:     Lynne <[email protected]>
CommitDate: Thu Nov 27 03:12:30 2025 +0100

    vulkan_dpx: fix compilation with older headers
    
    Fixes #21028

diff --git a/libavcodec/vulkan_dpx.c b/libavcodec/vulkan_dpx.c
index 8978b78db4..54774f2424 100644
--- a/libavcodec/vulkan_dpx.c
+++ b/libavcodec/vulkan_dpx.c
@@ -137,7 +137,7 @@ static int host_upload_image(AVCodecContext *avctx,
     };
     VkCopyMemoryToImageInfo copy_info = {
         .sType = VK_STRUCTURE_TYPE_COPY_MEMORY_TO_IMAGE_INFO,
-        .flags = VK_HOST_IMAGE_COPY_MEMCPY_BIT_EXT,
+        .flags = VK_HOST_IMAGE_COPY_MEMCPY_EXT,
         .dstImage = temp,
         .dstImageLayout = VK_IMAGE_LAYOUT_GENERAL,
         .regionCount = 1,

-----------------------------------------------------------------------

Summary of changes:
 libavcodec/vulkan_dpx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to