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

Git pushed a commit to branch master
in repository ffmpeg.

commit 096e20b4b8d117294f8df6f2474d559cc369038e
Author:     Niklas Haas <[email protected]>
AuthorDate: Fri Feb 20 19:52:53 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Thu Feb 26 18:08:49 2026 +0000

    swscale/ops: reorder fields in SwsOpList
    
    For some reason, this avoids triggering a compiler bug in gcc-15 on PowerPC,
    that was introduced with commit da47951bd7b0dc8bfb8.
---
 libswscale/ops.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libswscale/ops.h b/libswscale/ops.h
index f7a5a8c1ee..1684107f00 100644
--- a/libswscale/ops.h
+++ b/libswscale/ops.h
@@ -223,6 +223,9 @@ typedef struct SwsOpList {
     SwsOp *ops;
     int num_ops;
 
+    /* Purely informative metadata associated with this operation list */
+    SwsFormat src, dst;
+
     /* Input/output plane pointer swizzle mask */
     SwsSwizzleOp order_src, order_dst;
 
@@ -236,9 +239,6 @@ typedef struct SwsOpList {
      * information is known.
      */
     SwsComps comps_src;
-
-    /* Purely informative metadata associated with this operation list */
-    SwsFormat src, dst;
 } SwsOpList;
 
 SwsOpList *ff_sws_op_list_alloc(void);

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

Reply via email to