libav: enable arm 64bit

Fixes #211
This commit is contained in:
Alexander Boettcher
2020-06-10 10:53:45 +02:00
committed by Norman Feske
parent 4ef6c7d5ce
commit 9903036142
4 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
CC_C_OPT += -DARCH_AARCH64=1
include $(REP_DIR)/lib/mk/avcodec.inc
-include $(LIBAVCODEC_DIR)/aarch64/Makefile

View File

@@ -0,0 +1,8 @@
# must be defined before the inclusion of the libavutil 'Makefile'
ARCH_ARM=yes
CC_C_OPT += -DARCH_AARCH64=1
include $(REP_DIR)/lib/mk/avutil.inc
-include $(LIBAVUTIL_DIR)/aarch64/Makefile

View File

@@ -18,7 +18,7 @@ lib/import:
lib/mk:
mkdir -p $@
cp $(addprefix $(REP_DIR)/$@/,av* swscale.mk) $@
for spec in x86 x86_32 x86_64 arm; do \
for spec in x86 x86_32 x86_64 arm arm_64; do \
mkdir -p $@/spec/$$spec; \
cp $(addprefix $(REP_DIR)/$@/spec/$$spec/,av*) $@/spec/$$spec/; done

View File

@@ -1 +1 @@
2020-04-28 d0b2291a03af52f9d7fb220e2c393d77bdb97215
2020-06-10 2836c8c56d33a022ede61123481aec42ceb3ef09