This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit e418d44c1e19580731699716ba35a30be23b7c48 Author: Ramiro Polla <[email protected]> AuthorDate: Sun Jul 19 18:21:58 2026 +0200 Commit: Ramiro Polla <[email protected]> CommitDate: Wed Jul 22 14:07:37 2026 +0000 swscale/aarch64/rasm: add extra helpers for instructions that take all 16b operands Sponsored-by: Sovereign Tech Fund Signed-off-by: Ramiro Polla <[email protected]> --- libswscale/aarch64/rasm.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libswscale/aarch64/rasm.h b/libswscale/aarch64/rasm.h index 8b1c8efcb2..3d28f8099a 100644 --- a/libswscale/aarch64/rasm.h +++ b/libswscale/aarch64/rasm.h @@ -623,6 +623,8 @@ static inline RasmOp a64cond_nv(void) { return a64op_cond(AARCH64_COND_NV); } #define i_ble(rctx, id) i_bcond(rctx, a64cond_le(), rasm_op_label(id)) /* Extra helpers. */ -#define i_mov16b(rctx, op0, op1) i_mov(rctx, v_16b(op0), v_16b(op1)) +#define i_and16b(rctx, op0, op1, op2) i_and(rctx, v_16b(op0), v_16b(op1), v_16b(op2)) +#define i_mov16b(rctx, op0, op1 ) i_mov(rctx, v_16b(op0), v_16b(op1) ) +#define i_orr16b(rctx, op0, op1, op2) i_orr(rctx, v_16b(op0), v_16b(op1), v_16b(op2)) #endif /* SWSCALE_AARCH64_RASM_H */ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
