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

github.com/alexmarsev/soundtouch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2015-05-18 18:25:07 +0300
committeroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2015-05-18 18:25:07 +0300
commit91ab559f8e55e43648919bce9aa7eb44134ebead (patch)
tree1d144676c80d1a742168d803e847e292ab37757a
parent4fddace0316adc321447d5a02308c8727348a79b (diff)
Bugfix: limit __SOFTFP__ switch usage only to Android
-rw-r--r--include/STTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/STTypes.h b/include/STTypes.h
index e5633b9..7888c4e 100644
--- a/include/STTypes.h
+++ b/include/STTypes.h
@@ -75,7 +75,7 @@ namespace soundtouch
/// runtime performance so recommendation is to keep this off.
// #define USE_MULTICH_ALWAYS
- #if (defined(__SOFTFP__))
+ #if (defined(__SOFTFP__) && defined(ANDROID))
// For Android compilation: Force use of Integer samples in case that
// compilation uses soft-floating point emulation - soft-fp is way too slow
#undef SOUNDTOUCH_FLOAT_SAMPLES