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

Git pushed a commit to branch master
in repository ffmpeg.

commit 5dc567a28ea9c63f473c60a33a39e53b7e3a0624
Author:     Lynne <[email protected]>
AuthorDate: Wed May 13 00:16:25 2026 +0900
Commit:     Lynne <[email protected]>
CommitDate: Thu May 14 02:55:52 2026 +0900

    vulkan/prores_raw: remove redundant fast golomb parsing path
---
 libavcodec/vulkan/prores_raw_decode.comp.glsl | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/libavcodec/vulkan/prores_raw_decode.comp.glsl 
b/libavcodec/vulkan/prores_raw_decode.comp.glsl
index 9e28bd24b6..87670c9ee5 100644
--- a/libavcodec/vulkan/prores_raw_decode.comp.glsl
+++ b/libavcodec/vulkan/prores_raw_decode.comp.glsl
@@ -98,11 +98,6 @@ int get_value(int16_t codebook)
         return 0;
     int q = 31 - findMSB(b);
 
-    if ((b & 0x80000000) != 0) {
-        skip_bits(gb, 1 + rice_order);
-        return int((b & 0x7FFFFFFF) >> (31 - rice_order));
-    }
-
     if (q <= switch_bits) {
         skip_bits(gb, q + rice_order + 1);
         return int((q << rice_order) +

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

Reply via email to