diff options
author | Martin Storsjö <martin@martin.st> | 2023-10-17 14:24:47 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2023-10-21 23:25:23 +0300 |
commit | 93cda5a9c292e47cf080e6158c5461455d28ccae (patch) | |
tree | cdbfedd7ccd15156f747df70956151c6c21b1cd6 /libavcodec | |
parent | 184103b3105f02f1189fa0047af4269e027dfbd6 (diff) | |
download | ffmpeg-93cda5a9c292e47cf080e6158c5461455d28ccae.tar.gz |
aarch64: Lowercase UXTW/SXTW and similar flags
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aarch64/h264cmc_neon.S | 4 | ||||
-rw-r--r-- | libavcodec/aarch64/h264idct_neon.S | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/aarch64/h264cmc_neon.S b/libavcodec/aarch64/h264cmc_neon.S index 5b959b87d3..2ddd5c8a53 100644 --- a/libavcodec/aarch64/h264cmc_neon.S +++ b/libavcodec/aarch64/h264cmc_neon.S @@ -38,7 +38,7 @@ function ff_\type\()_\codec\()_chroma_mc8_neon, export=1 lsl w9, w9, #3 lsl w10, w10, #1 add w9, w9, w10 - add x6, x6, w9, UXTW + add x6, x6, w9, uxtw ld1r {v22.8h}, [x6] .endif .ifc \codec,vc1 @@ -208,7 +208,7 @@ function ff_\type\()_\codec\()_chroma_mc4_neon, export=1 lsl w9, w9, #3 lsl w10, w10, #1 add w9, w9, w10 - add x6, x6, w9, UXTW + add x6, x6, w9, uxtw ld1r {v22.8h}, [x6] .endif .ifc \codec,vc1 diff --git a/libavcodec/aarch64/h264idct_neon.S b/libavcodec/aarch64/h264idct_neon.S index 1bab2ca7c8..3f7ff2c49e 100644 --- a/libavcodec/aarch64/h264idct_neon.S +++ b/libavcodec/aarch64/h264idct_neon.S @@ -385,7 +385,7 @@ function ff_h264_idct8_add4_neon, export=1 movrel x14, .L_ff_h264_idct8_add_neon 1: ldrb w9, [x7], #4 ldrsw x0, [x5], #16 - ldrb w9, [x4, w9, UXTW] + ldrb w9, [x4, w9, uxtw] subs w9, w9, #1 b.lt 2f ldrsh w11, [x1] |