From 7f905f3672da4f1fa28d7cccf1fef7f9984e0480 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Tue, 17 Oct 2023 13:47:27 +0300 Subject: aarch64: Make the indentation more consistent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some functions have slightly different indentation styles; try to match the surrounding code. libavcodec/aarch64/vc1dsp_neon.S is skipped here, as it intentionally uses a layered indentation style to visually show how different unrolled/interleaved phases fit together. Signed-off-by: Martin Storsjö --- libavutil/aarch64/tx_float_neon.S | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libavutil') diff --git a/libavutil/aarch64/tx_float_neon.S b/libavutil/aarch64/tx_float_neon.S index e5531dcc7c..9916ad4142 100644 --- a/libavutil/aarch64/tx_float_neon.S +++ b/libavutil/aarch64/tx_float_neon.S @@ -729,9 +729,9 @@ FFT16_FN ns_float, 1 .endm .macro SR_COMBINE_4 len, part, off - add x10, x1, x21 - add x11, x1, x21, lsl #1 - add x12, x1, x22 + add x10, x1, x21 + add x11, x1, x21, lsl #1 + add x12, x1, x22 ldp q0, q1, [x1, #((0 + \part)*32 + \off)] ldp q4, q5, [x1, #((2 + \part)*32 + \off)] @@ -759,9 +759,9 @@ FFT16_FN ns_float, 1 .endm .macro SR_COMBINE_FULL len, off=0 - add x10, x1, x21 - add x11, x1, x21, lsl #1 - add x12, x1, x22 + add x10, x1, x21 + add x11, x1, x21, lsl #1 + add x12, x1, x22 SR_COMBINE_4 \len, 0, \off SR_COMBINE_4 \len, 1, \off -- cgit v1.2.3