The branch, master has been updated
via 932a872dbc1a300a45b085cd0195ce6ab8e0b3fa (commit)
from 17456c553ebefb15e52ff1a11234098d173cda64 (commit)
- Log -----------------------------------------------------------------
commit 932a872dbc1a300a45b085cd0195ce6ab8e0b3fa
Author: Lynne <[email protected]>
AuthorDate: Sun Nov 30 23:10:31 2025 +0100
Commit: Lynne <[email protected]>
CommitDate: Sun Nov 30 23:11:46 2025 +0100
hwcontext_vulkan: fix VkImageToMemoryCopyEXT.sType
It was copy pasted from the upload path.
Somehow, it was missed, despite god knows how many validation layer runs.
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index aac7768033..c3322bafbd 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -4458,7 +4458,7 @@ static int vulkan_transfer_host(AVHWFramesContext *hwfc,
AVFrame *hwf,
}
} else {
VkImageToMemoryCopyEXT region_info = {
- .sType = VK_STRUCTURE_TYPE_MEMORY_TO_IMAGE_COPY_EXT,
+ .sType = VK_STRUCTURE_TYPE_IMAGE_TO_MEMORY_COPY_EXT,
.imageSubresource = {
.layerCount = 1,
},
-----------------------------------------------------------------------
Summary of changes:
libavutil/hwcontext_vulkan.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]