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 8b36b1668ff0d1ef2457a9ff9cb627e6018f5d22
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Thu Jul 30 01:41:06 2026 +0200
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Sun Aug 2 02:47:33 2026 +0200

    avcodec/vulkan/ffv1_dec_setup: act on the slice header rejection
    
    (cherry picked from commit 533a3c254d864a7cd4066cd055c2e2d038e95576)
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 libavcodec/vulkan/ffv1_dec_setup.comp.glsl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/vulkan/ffv1_dec_setup.comp.glsl 
b/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
index 72df03874a..ea84da6d4e 100644
--- a/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
+++ b/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
@@ -219,7 +219,8 @@ void main(void)
     if (slice_idx == (gl_NumWorkGroups.x*gl_NumWorkGroups.y - 1))
         get_rac_equi();
 
-    decode_slice_header(slice_idx, slice_ctx[slice_idx]);
+    if (decode_slice_header(slice_idx, slice_ctx[slice_idx]))
+        slice_ctx[slice_idx].slice_dim = ivec2(0);
 
     slice_ctx[slice_idx].c = rc;
 

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

Reply via email to