Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-22 05:06:43 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-22 05:06:43 +0400
commit135b1a3f2c7985b8336d170419aec6e30cd78043 (patch)
treec66258223e5b151c8d50e860c44af9896021ba04
parentab7c67905d1a97c274b24e268798d2f5fa2f6220 (diff)
parentd45ebd4876ab8fc07736a644de07e1b1d11a8e5d (diff)
Merge commit 'd45ebd4876ab8fc07736a644de07e1b1d11a8e5d'
* commit 'd45ebd4876ab8fc07736a644de07e1b1d11a8e5d': configure: add support for neon intrinsics Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--Makefile1
-rwxr-xr-xconfigure12
2 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2070aa4511..57f6a91c47 100644
--- a/Makefile
+++ b/Makefile
@@ -92,6 +92,7 @@ $(foreach V,$(SUBDIR_VARS),$(eval $(call RESET,$(V))))
SUBDIR := $(1)/
include $(SRC_PATH)/$(1)/Makefile
-include $(SRC_PATH)/$(1)/$(ARCH)/Makefile
+-include $(SRC_PATH)/$(1)/$(INTRINSICS)/Makefile
include $(SRC_PATH)/library.mak
endef
diff --git a/configure b/configure
index d55b425510..19b44d4cc5 100755
--- a/configure
+++ b/configure
@@ -1647,6 +1647,10 @@ HEADERS_LIST="
winsock2_h
"
+INTRINSICS_LIST="
+ intrinsics_neon
+"
+
MATH_FUNCS="
atanf
atan2f
@@ -1778,6 +1782,7 @@ HAVE_LIST="
$HAVE_LIST_CMDLINE
$HAVE_LIST_PUB
$HEADERS_LIST
+ $INTRINSICS_LIST
$MATH_FUNCS
$SYSTEM_FUNCS
$THREADS_LIST
@@ -1941,6 +1946,7 @@ armv6_deps="arm"
armv6t2_deps="arm"
armv8_deps="aarch64"
neon_deps_any="aarch64 arm"
+intrinsics_neon_deps="neon"
vfp_deps_any="aarch64 arm"
vfpv3_deps="vfp"
@@ -2662,6 +2668,7 @@ else
arch_default=$(uname -m)
fi
cpu="generic"
+intrinsics="none"
# configurable options
enable $PROGRAM_LIST
@@ -4536,6 +4543,8 @@ EOF
fi
+check_code cc arm_neon.h "int64x2_t test" && enable intrinsics_neon
+
check_ldflags -Wl,--as-needed
if check_func dlopen; then
@@ -5211,6 +5220,8 @@ merge_deps() {
merge_deps libavfilter $FILTER_LIST
+map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
+
for thread in $THREADS_LIST; do
if enabled $thread; then
test -n "$thread_type" &&
@@ -5391,6 +5402,7 @@ SRC_PATH:=\$(SRC_PATH:.%=..%)
endif
CC_IDENT=$cc_ident
ARCH=$arch
+INTRINSICS=$intrinsics
CC=$cc
CXX=$cxx
AS=$as