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

Git pushed a commit to branch master
in repository ffmpeg.

commit 3f91ff8aa65a69c06babafadfe0da67ea9a0dc83
Author:     Lynne <[email protected]>
AuthorDate: Sun Feb 15 17:43:22 2026 +0100
Commit:     Lynne <[email protected]>
CommitDate: Thu Feb 19 19:42:35 2026 +0100

    ffv1enc_vulkan: perform non-RGB prediction in 16-bits
---
 libavcodec/vulkan/ffv1_common.glsl | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavcodec/vulkan/ffv1_common.glsl 
b/libavcodec/vulkan/ffv1_common.glsl
index 9032bdf612..5a8bb7dd4d 100644
--- a/libavcodec/vulkan/ffv1_common.glsl
+++ b/libavcodec/vulkan/ffv1_common.glsl
@@ -78,9 +78,15 @@ layout (push_constant, scalar) uniform pushConstants {
 
 #include "rangecoder.glsl"
 
+#if !defined(RGB)
+#define TYPE int16_t
+#define VTYPE2 i16vec2
+#define VTYPE3 i16vec3
+#else
 #define TYPE int32_t
 #define VTYPE2 i32vec2
 #define VTYPE3 i32vec3
+#endif
 
 struct SliceContext {
     RangeCoder c;

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

Reply via email to