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

Git pushed a commit to branch master
in repository ffmpeg.

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

    avcodec/vulkan/ffv1_dec_setup: act on the slice header rejection
---
 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 d000116012..1debd9b992 100644
--- a/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
+++ b/libavcodec/vulkan/ffv1_dec_setup.comp.glsl
@@ -217,7 +217,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