PR #21648 opened by Jun Zhao (mypopydev) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21648 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21648.patch
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]> >From 27dd2f1c70092324301d7ab43d91d90d6fbf9429 Mon Sep 17 00:00:00 2001 From: Jun Zhao <[email protected]> Date: Thu, 5 Feb 2026 08:51:52 +0800 Subject: [PATCH] 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 -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
