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
path: root/celt
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2019-04-01 08:45:36 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2019-04-01 08:45:36 +0300
commit3765a248489e902b5e1b26e1d68aa10d6e02ff67 (patch)
tree1f09bb5a0fce0371501013ceb4a468447dcaf8d0 /celt
parentdb082963b98323d88535f4522ba710208ba93a1a (diff)
Fix #elif OPUS_ARM_INLINE_EDSP
Reported in https://github.com/xiph/opus/issues/108
Diffstat (limited to 'celt')
-rw-r--r--celt/arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/arch.h b/celt/arch.h
index c627a744..08b07db5 100644
--- a/celt/arch.h
+++ b/celt/arch.h
@@ -160,7 +160,7 @@ static OPUS_INLINE opus_int16 SAT16(opus_int32 x) {
#ifdef OPUS_ARM_PRESUME_AARCH64_NEON_INTR
#include "arm/fixed_arm64.h"
-#elif OPUS_ARM_INLINE_EDSP
+#elif defined (OPUS_ARM_INLINE_EDSP)
#include "arm/fixed_armv5e.h"
#elif defined (OPUS_ARM_INLINE_ASM)
#include "arm/fixed_armv4.h"