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

Git pushed a commit to branch master
in repository ffmpeg.

commit c91b50659b9ae66a966b74246ead91418be53d21
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Thu Jul 30 01:41:17 2026 +0200
Commit:     michaelni <[email protected]>
CommitDate: Fri Jul 31 19:37:52 2026 +0000

    avcodec/vulkan/ffv1_dec_setup: test mul_count as unsigned
---
 libavcodec/vulkan/ffv1_dec_setup.comp.glsl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/vulkan/ffv1_dec_setup.comp.glsl 
b/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
index 47a5b42bc6..ead7c57474 100644
--- a/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
+++ b/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
@@ -106,7 +106,7 @@ bool decode_remap(uint slice_idx, inout SliceContext sc)
             rc_state[k] = uint8_t(128);
 
         int mul_count = int(get_usymbol(0));
-        if (mul_count > 4096)
+        if (uint(mul_count) > 4096u)
             return true;
         for (int mi = 0; mi < mul_count; mi++)
             mul[mi] = -1;

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

Reply via email to