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

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 7922d4ca7d avcodec/wasm/hevc: fix typo in butterfly macro
7922d4ca7d is described below

commit 7922d4ca7d310fa3379bc648be2d3c5d97a9e5ab
Author:     Xia Tao <[email protected]>
AuthorDate: Thu Dec 4 11:49:50 2025 +0800
Commit:     Zhao Zhili <[email protected]>
CommitDate: Thu Dec 4 08:40:43 2025 +0000

    avcodec/wasm/hevc: fix typo in butterfly macro
    
    Signed-off-by: Xia Tao <[email protected]>
---
 libavcodec/wasm/hevc/idct.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/libavcodec/wasm/hevc/idct.c b/libavcodec/wasm/hevc/idct.c
index 828fc26a49..f2b04f307c 100644
--- a/libavcodec/wasm/hevc/idct.c
+++ b/libavcodec/wasm/hevc/idct.c
@@ -279,7 +279,7 @@ void ff_hevc_idct_8x8_10_simd128(int16_t *coeffs, int 
col_limit)
     x1 += x2;                                   \
     x3 += x2;                                   \
 
-#define bufferfly(e, o, p, m)   \
+#define butterfly(e, o, p, m)   \
     p = wasm_i32x4_add(e, o);   \
     m = wasm_i32x4_sub(e, o);   \
 
@@ -309,10 +309,10 @@ static void tr16_8x4(v128_t in0, v128_t in1, v128_t in2, 
v128_t in3,
     v30 = wasm_i32x4_add(v30, wasm_i32x4_extmul_high_i16x8(in3, trans[5]));
     v31 = wasm_i32x4_sub(v31, wasm_i32x4_extmul_high_i16x8(in3, trans[4]));
 
-    bufferfly(v24, v28, v16, v23);
-    bufferfly(v25, v29, v17, v22);
-    bufferfly(v26, v30, v18, v21);
-    bufferfly(v27, v31, v19, v20);
+    butterfly(v24, v28, v16, v23);
+    butterfly(v25, v29, v17, v22);
+    butterfly(v26, v30, v18, v21);
+    butterfly(v27, v31, v19, v20);
 
     sp += offset;
     wasm_v128_store(sp, v16); sp += 16;

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

Reply via email to