From 00914cc3efabfd276092f45231d774f7e32eeeb2 Mon Sep 17 00:00:00 2001 From: averne Date: Sun, 14 Dec 2025 23:05:07 +0100 Subject: [PATCH] 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");