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

Git pushed a commit to branch master
in repository ffmpeg.

commit 00914cc3efabfd276092f45231d774f7e32eeeb2
Author:     averne <[email protected]>
AuthorDate: Sun Dec 14 23:05:07 2025 +0100
Commit:     Lynne <[email protected]>
CommitDate: Mon Dec 15 12:29:00 2025 +0000

    vulkan/prores: increase bitstream caching
    
    Now caches 64B of data when the reader hits the refill codepath
---
 libavcodec/vulkan_prores.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/vulkan_prores.c b/libavcodec/vulkan_prores.c
index 338c09d46f..da10f93548 100644
--- a/libavcodec/vulkan_prores.c
+++ b/libavcodec/vulkan_prores.c
@@ -405,7 +405,7 @@ static int init_shader(AVCodecContext *avctx, 
FFVulkanContext *s,
                           local_size >> 16 & 0xff, local_size >> 8 & 0xff, 
local_size >> 0 & 0xff,
                           0));
 
-    av_bprintf(&shd->src, "#define GET_BITS_SMEM\n");
+    av_bprintf(&shd->src, "#define GET_BITS_SMEM %d\n", 4);
 
     if (interlaced)
         av_bprintf(&shd->src, "#define INTERLACED\n");

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

Reply via email to