shithub: openh264

Download patch

ref: 40e74e43d6d51b5370526be650cc7b899ee56215
parent: f8ca91f317504086cab5fb7cd67d86d0dc917086
author: Martin Storsjö <[email protected]>
date: Fri Jun 27 08:54:25 EDT 2014

Fix building intra_pred_sad_3_opt_aarch64_neon.S with gnu binutils

One macro argument was left in the apple syntax.

--- a/codec/encoder/core/arm64/intra_pred_sad_3_opt_aarch64_neon.S
+++ b/codec/encoder/core/arm64/intra_pred_sad_3_opt_aarch64_neon.S
@@ -186,7 +186,7 @@
 .macro LOAD_CHROMA_DATA arg0, arg1, arg2
     sub     x9, \arg0, x1
     ld1     {\arg1}, [x9]      //top_cb
-    sub     x9, $0, #1
+    sub     x9, \arg0, #1
     ld1     {\arg2}[8], [x9], x1
     ld1     {\arg2}[9], [x9], x1
     ld1     {\arg2}[10], [x9], x1
@@ -662,4 +662,4 @@
 
 WELS_ASM_ARCH64_FUNC_END
 
-#endif
\ No newline at end of file
+#endif