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

Git pushed a commit to branch master
in repository ffmpeg.

commit 4e63dbeb6d8fc2ceee2ba062356c1a530d801128
Author:     Niklas Haas <[email protected]>
AuthorDate: Wed Mar 4 23:18:26 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Thu Mar 12 21:02:48 2026 +0000

    swscale/ops_chain: add more integer types to SwsOpPriv
    
    In particular, I need i32, but the others are also reasonable additions.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/ops_chain.h | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/libswscale/ops_chain.h b/libswscale/ops_chain.h
index 7d598c2875..76ab5d964b 100644
--- a/libswscale/ops_chain.h
+++ b/libswscale/ops_chain.h
@@ -45,12 +45,17 @@ typedef union SwsOpPriv {
 
     /* Common types */
     void *ptr;
-    int8_t    i8[16];
-    uint8_t   u8[16];
-    uint16_t u16[8];
-    int16_t  i16[8];
-    uint32_t u32[4];
-    float    f32[4];
+    uint8_t    u8[16];
+    int8_t     i8[16];
+    uint16_t   u16[8];
+    int16_t    i16[8];
+    uint32_t   u32[4];
+    int32_t    i32[4];
+    float      f32[4];
+    uint64_t   u64[2];
+    int64_t    i64[2];
+    uintptr_t uptr[2];
+    intptr_t  iptr[2];
 } SwsOpPriv;
 
 static_assert(sizeof(SwsOpPriv) == 16, "SwsOpPriv size mismatch");

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

Reply via email to