shithub: openh264

Download patch

ref: f1b2d51d8624431ca161f20149d157117c1c16f6
parent: 3c2e9cd7bf7fb266166e4cf4e3b900cebd7db8d6
author: Martin Storsjö <martin@martin.st>
date: Wed Apr 23 06:53:39 EDT 2014

Add support for building the arm64 assembly in platform-arch.mk

--- a/build/platform-arch.mk
+++ b/build/platform-arch.mk
@@ -8,3 +8,10 @@
 CFLAGS += -DHAVE_NEON
 endif
 endif
+ifneq ($(filter arm64 aarch64, $(ARCH)),)
+ifeq ($(USE_ASM), Yes)
+ASM_ARCH = arm64
+ASMFLAGS += -Icodec/common/arm64/
+CFLAGS += -DHAVE_NEON_AARCH64
+endif
+endif