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

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurélien Zanelli <aurelien.zanelli@parrot.com>2013-05-31 17:07:00 +0400
committerTimothy B. Terriberry <tterribe@xiph.org>2013-06-05 03:23:22 +0400
commitcd4c8249bc0e091789495a09b8942d28b687273c (patch)
tree43765658985f2bee5e4dbd5acc198b884cfecf48 /Makefile.am
parentaa6a1a16ad84a58484d4550d661118fe7b8bb310 (diff)
Add run-time CPU detection and support for ARM architecture
Run-time CPU detection (RTCD) is enabled by default if target platform support it. It can be disable at compile time with --disable-rtcd option. Add RTCD support for ARM architecture. Thanks to Timothy B. Terriberry for help and code review Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index f04e3bc8..c9489f4d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,6 +18,10 @@ SILK_SOURCES += $(SILK_SOURCES_FLOAT)
OPUS_SOURCES += $(OPUS_SOURCES_FLOAT)
endif
+if CPU_ARM
+CELT_SOURCES += $(CELT_SOURCES_ARM)
+endif
+
include celt_headers.mk
include silk_headers.mk
include opus_headers.mk