mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
hevcdsp_idct_neon.S: Avoid unnecessary mov.
ret can be given an argument instead. This is also consistent with how other assembler code in FFmpeg does it. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
075dfc271b
commit
dcff15692d
1 changed files with 2 additions and 4 deletions
|
|
@ -617,8 +617,7 @@ function ff_hevc_idct_16x16_\bitdepth\()_neon, export=1
|
|||
|
||||
add sp, sp, #640
|
||||
|
||||
mov x30, x15
|
||||
ret
|
||||
ret x15
|
||||
endfunc
|
||||
.endm
|
||||
|
||||
|
|
@ -814,8 +813,7 @@ function ff_hevc_idct_32x32_\bitdepth\()_neon, export=1
|
|||
.endr
|
||||
|
||||
add sp, sp, #2432
|
||||
mov x30, x15
|
||||
ret
|
||||
ret x15
|
||||
endfunc
|
||||
.endm
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue