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

Git pushed a commit to branch master
in repository ffmpeg.

commit 50e6668c83e2861404893fe7bc7338344466e360
Author:     Lynne <[email protected]>
AuthorDate: Tue May 26 11:30:58 2026 +0900
Commit:     Lynne <[email protected]>
CommitDate: Tue May 26 17:47:04 2026 +0900

    vulkan/ffv1_enc: skip GOLOMB encode_line when !bits for FLOAT formats
    
    Same as the arithmetic coded path. I skipped out on adding this here.
    
    Sponsored-by: Sovereign Tech Fund
---
 libavcodec/vulkan/ffv1_enc.comp.glsl | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavcodec/vulkan/ffv1_enc.comp.glsl 
b/libavcodec/vulkan/ffv1_enc.comp.glsl
index 38119780f7..1381c041db 100644
--- a/libavcodec/vulkan/ffv1_enc.comp.glsl
+++ b/libavcodec/vulkan/ffv1_enc.comp.glsl
@@ -164,6 +164,9 @@ void encode_line(in SliceContext sc, readonly uimage2D img, 
uint state_off,
         w = ceil_rshift(w, chroma_shift.x);
         sp >>= chroma_shift;
     }
+#elif defined(FLOAT)
+    if (bits == 0)
+        return;
 #endif
 
     linecache_load(img, sp, y, comp);

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

Reply via email to