diff options
author | Martin Storsjö <martin@martin.st> | 2024-07-23 14:25:57 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2024-07-23 15:24:37 +0300 |
commit | 99598629e8803bac406234187b0fd5676aa4bc67 (patch) | |
tree | a4166baea10f34092357693697fc39db35270092 /libavcodec/aarch64/vvc/alf.S | |
parent | 400843151d84180a9769a92d98379440e5a4c522 (diff) | |
download | ffmpeg-99598629e8803bac406234187b0fd5676aa4bc67.tar.gz |
aarch64: vvc: Consistently use # for immediate constants
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/aarch64/vvc/alf.S')
-rw-r--r-- | libavcodec/aarch64/vvc/alf.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/aarch64/vvc/alf.S b/libavcodec/aarch64/vvc/alf.S index 828031cb90..eec193302a 100644 --- a/libavcodec/aarch64/vvc/alf.S +++ b/libavcodec/aarch64/vvc/alf.S @@ -95,7 +95,7 @@ .else ldr q5, [x5] // curr .endif - movi v20.4s, 64 + movi v20.4s, #64 cbz is_near_vb, 1f shl v20.4s, v20.4s, #3 1: @@ -220,7 +220,7 @@ .else ldr d5, [x5] // curr .endif - movi v20.4s, 64 + movi v20.4s, #64 cbz is_near_vb, 1f shl v20.4s, v20.4s, #3 1: @@ -267,12 +267,12 @@ function ff_alf_filter_luma_kernel_8_neon, export=1 endfunc function ff_alf_filter_luma_kernel_12_neon, export=1 - mov w5, 4095 + mov w5, #4095 b 1f endfunc function ff_alf_filter_luma_kernel_10_neon, export=1 - mov w5, 1023 + mov w5, #1023 1: alf_filter_luma_kernel 2 endfunc @@ -282,12 +282,12 @@ function ff_alf_filter_chroma_kernel_8_neon, export=1 endfunc function ff_alf_filter_chroma_kernel_12_neon, export=1 - mov w5, 4095 + mov w5, #4095 b 1f endfunc function ff_alf_filter_chroma_kernel_10_neon, export=1 - mov w5, 1023 + mov w5, #1023 1: alf_filter_chroma_kernel 2 endfunc |