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

Git pushed a commit to branch master
in repository ffmpeg.

commit 95e6c68707f7cfff832a1feae60ecb0b47c00c98
Author:     Niklas Haas <[email protected]>
AuthorDate: Tue Mar 17 01:21:37 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Sat Mar 28 16:48:13 2026 +0000

    swscale/ops: print exact constant on SWS_OP_SCALE
    
    More informative.
    
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/ops.c            | 2 +-
 tests/ref/fate/sws-ops-list | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libswscale/ops.c b/libswscale/ops.c
index ae77b19f99..f4750a8c10 100644
--- a/libswscale/ops.c
+++ b/libswscale/ops.c
@@ -852,7 +852,7 @@ void ff_sws_op_list_print(void *log, int lev, int lev_extra,
                    PRINTQ(op->lin.m[3][0]), PRINTQ(op->lin.m[3][1]), 
PRINTQ(op->lin.m[3][2]), PRINTQ(op->lin.m[3][3]), PRINTQ(op->lin.m[3][4]));
             break;
         case SWS_OP_SCALE:
-            av_log(log, lev, "%-20s: * %s\n", name, PRINTQ(op->c.q));
+            av_log(log, lev, "%-20s: * %d/%d\n", name, op->c.q.num, 
op->c.q.den);
             break;
         case SWS_OP_TYPE_NB:
             break;
diff --git a/tests/ref/fate/sws-ops-list b/tests/ref/fate/sws-ops-list
index c83105406f..4cfce95495 100644
--- a/tests/ref/fate/sws-ops-list
+++ b/tests/ref/fate/sws-ops-list
@@ -1 +1 @@
-121d60ee0261ca5d9650a8d1e9e8a060
+c014aa1e7c12d3bb101951487c406148

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

Reply via email to