summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2023-10-17 13:47:27 +0300
committerMartin Storsjö <martin@martin.st>2023-10-21 23:25:29 +0300
commit7f905f3672da4f1fa28d7cccf1fef7f9984e0480 (patch)
treea60676b089c38c5bd738ade95fb6892f805835bd /libavutil
parent93cda5a9c292e47cf080e6158c5461455d28ccae (diff)
aarch64: Make the indentation more consistent
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ö <martin@martin.st>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/aarch64/tx_float_neon.S12
1 files changed, 6 insertions, 6 deletions
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