[FFmpeg-cvslog] hevcdsp_idct_neon.S: Avoid unnecessary mov.

Reimar Döffinger git at videolan.org
Sat Jul 29 17:20:25 EEST 2023


ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Wed Jul 26 21:13:44 2023 +0200| [dcff15692dff4c55827d640f1d5d07eb255a5a6a] | committer: Reimar Döffinger

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 at gmx.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dcff15692dff4c55827d640f1d5d07eb255a5a6a
---

 libavcodec/aarch64/hevcdsp_idct_neon.S | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/libavcodec/aarch64/hevcdsp_idct_neon.S b/libavcodec/aarch64/hevcdsp_idct_neon.S
index b7f23386a4..f7142c939c 100644
--- a/libavcodec/aarch64/hevcdsp_idct_neon.S
+++ b/libavcodec/aarch64/hevcdsp_idct_neon.S
@@ -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
 



More information about the ffmpeg-cvslog mailing list