This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit d295add2225e1ad9ba9d55cb612cce50072dc45d
Author:     Lynne <[email protected]>
AuthorDate: Wed Aug 5 15:20:47 2026 +0900
Commit:     Lynne <[email protected]>
CommitDate: Wed Aug 5 16:04:38 2026 +0900

    vulkan: fix typo when printing the SPIR-V/binary size
---
 libavutil/vulkan.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c
index 568e77f90d..71e0c6f8f2 100644
--- a/libavutil/vulkan.c
+++ b/libavutil/vulkan.c
@@ -2355,7 +2355,7 @@ int ff_vk_shader_link(FFVulkanContext *s, FFVulkanShader 
*shd,
         av_log(s, AV_LOG_VERBOSE, " %zu compressed,", input_size);
     av_log(s, AV_LOG_VERBOSE, " %zu SPIR-V", spirv_len);
     if (binary_size != spirv_len)
-        av_log(s, AV_LOG_VERBOSE, ", %zu binary", spirv_len);
+        av_log(s, AV_LOG_VERBOSE, ", %zu binary", binary_size);
     av_log(s, AV_LOG_VERBOSE, "\n");
 
 end:

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

Reply via email to