This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 27dd2f1c70 lavc/hevc: fix missing # in ldrsw immediate offset
27dd2f1c70 is described below

commit 27dd2f1c70092324301d7ab43d91d90d6fbf9429
Author:     Jun Zhao <[email protected]>
AuthorDate: Thu Feb 5 08:51:52 2026 +0800
Commit:     Jun Zhao <[email protected]>
CommitDate: Thu Feb 5 09:13:22 2026 +0800

    lavc/hevc: fix missing # in ldrsw immediate offset
    
    The ldrsw instruction requires immediate offset with # prefix.
    This fixes the syntax error introduced in commit 26752368f0
    (aarch64/h26x: Add put_hevc_pel_bi_w_pixels) where the
    load_bi_w_pixels_param macro was added.
    
    Signed-off-by: Jun Zhao <[email protected]>
---
 libavcodec/aarch64/h26x/epel_neon.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/aarch64/h26x/epel_neon.S 
b/libavcodec/aarch64/h26x/epel_neon.S
index 4cf6339171..235e3f5dd6 100644
--- a/libavcodec/aarch64/h26x/epel_neon.S
+++ b/libavcodec/aarch64/h26x/epel_neon.S
@@ -481,7 +481,7 @@ endfunc
 #else
         ldrsw           x9, [sp, #8]        // ox0
         ldrsw           x10, [sp, #16]      // ox1
-        ldrsw           x11, [sp, 40]       // width
+        ldrsw           x11, [sp, #40]      // width
 #endif
 .endm
 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to