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

Git pushed a commit to branch release/9.0
in repository ffmpeg.

commit 788e3985f8a461a87cacc4f5c7f54f58d5f6fea5
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Thu Jul 30 01:41:17 2026 +0200
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Sun Aug 2 02:47:33 2026 +0200

    avcodec/vulkan/ffv1_dec_setup: test mul_count as unsigned
    
    (cherry picked from commit c91b50659b9ae66a966b74246ead91418be53d21)
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 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 646aae0b59..5a648f4605 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