vulkan/prores: increase bitstream caching

Now caches 64B of data when the reader hits the refill codepath
This commit is contained in:
averne
2025-12-14 23:05:07 +01:00
committed by Lynne
parent a2475d16ed
commit 00914cc3ef

View File

@@ -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");