mirror of https://git.ffmpeg.org/ffmpeg.git
aarch64: vvc: Consistently use # for immediate constants
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
400843151d
commit
99598629e8
|
@ -95,7 +95,7 @@
|
||||||
.else
|
.else
|
||||||
ldr q5, [x5] // curr
|
ldr q5, [x5] // curr
|
||||||
.endif
|
.endif
|
||||||
movi v20.4s, 64
|
movi v20.4s, #64
|
||||||
cbz is_near_vb, 1f
|
cbz is_near_vb, 1f
|
||||||
shl v20.4s, v20.4s, #3
|
shl v20.4s, v20.4s, #3
|
||||||
1:
|
1:
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
.else
|
.else
|
||||||
ldr d5, [x5] // curr
|
ldr d5, [x5] // curr
|
||||||
.endif
|
.endif
|
||||||
movi v20.4s, 64
|
movi v20.4s, #64
|
||||||
cbz is_near_vb, 1f
|
cbz is_near_vb, 1f
|
||||||
shl v20.4s, v20.4s, #3
|
shl v20.4s, v20.4s, #3
|
||||||
1:
|
1:
|
||||||
|
@ -267,12 +267,12 @@ function ff_alf_filter_luma_kernel_8_neon, export=1
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
function ff_alf_filter_luma_kernel_12_neon, export=1
|
function ff_alf_filter_luma_kernel_12_neon, export=1
|
||||||
mov w5, 4095
|
mov w5, #4095
|
||||||
b 1f
|
b 1f
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
function ff_alf_filter_luma_kernel_10_neon, export=1
|
function ff_alf_filter_luma_kernel_10_neon, export=1
|
||||||
mov w5, 1023
|
mov w5, #1023
|
||||||
1:
|
1:
|
||||||
alf_filter_luma_kernel 2
|
alf_filter_luma_kernel 2
|
||||||
endfunc
|
endfunc
|
||||||
|
@ -282,12 +282,12 @@ function ff_alf_filter_chroma_kernel_8_neon, export=1
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
function ff_alf_filter_chroma_kernel_12_neon, export=1
|
function ff_alf_filter_chroma_kernel_12_neon, export=1
|
||||||
mov w5, 4095
|
mov w5, #4095
|
||||||
b 1f
|
b 1f
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
function ff_alf_filter_chroma_kernel_10_neon, export=1
|
function ff_alf_filter_chroma_kernel_10_neon, export=1
|
||||||
mov w5, 1023
|
mov w5, #1023
|
||||||
1:
|
1:
|
||||||
alf_filter_chroma_kernel 2
|
alf_filter_chroma_kernel 2
|
||||||
endfunc
|
endfunc
|
||||||
|
|
Loading…
Reference in New Issue