[FFmpeg-cvslog] swscale/aarch64: cosmetics fix (spaces inside curly braces)
Ramiro Polla
git at videolan.org
Mon Aug 26 12:08:33 EEST 2024
ffmpeg | branch: master | Ramiro Polla <ramiro.polla at gmail.com> | Mon Aug 26 11:07:49 2024 +0200| [420d4436005a298983268c71e926079dbf4e1897] | committer: Ramiro Polla
swscale/aarch64: cosmetics fix (spaces inside curly braces)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=420d4436005a298983268c71e926079dbf4e1897
---
libswscale/aarch64/swscale_unscaled_neon.S | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libswscale/aarch64/swscale_unscaled_neon.S b/libswscale/aarch64/swscale_unscaled_neon.S
index a21e1d866e..a074b187e5 100644
--- a/libswscale/aarch64/swscale_unscaled_neon.S
+++ b/libswscale/aarch64/swscale_unscaled_neon.S
@@ -40,8 +40,8 @@ function ff_nv24_to_yuv420p_chroma_neon, export=1
mov w10, w6 // w10 = w
2:
- ld2 { v0.16b, v1.16b }, [x4], #32 // v0 = U1, v1 = V1
- ld2 { v2.16b, v3.16b }, [x9], #32 // v2 = U2, v3 = V2
+ ld2 {v0.16b, v1.16b}, [x4], #32 // v0 = U1, v1 = V1
+ ld2 {v2.16b, v3.16b}, [x9], #32 // v2 = U2, v3 = V2
uaddlp v0.8h, v0.16b // pairwise add U1 into v0
uaddlp v1.8h, v1.16b // pairwise add V1 into v1
@@ -51,8 +51,8 @@ function ff_nv24_to_yuv420p_chroma_neon, export=1
shrn v0.8b, v0.8h, #2 // divide by 4
shrn v1.8b, v1.8h, #2 // divide by 4
- st1 { v0.8b }, [x0], #8 // store U into dst1
- st1 { v1.8b }, [x2], #8 // store V into dst2
+ st1 {v0.8b}, [x0], #8 // store U into dst1
+ st1 {v1.8b}, [x2], #8 // store V into dst2
subs w10, w10, #8
b.gt 2b
More information about the ffmpeg-cvslog
mailing list