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

github.com/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2011-12-15 00:54:07 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-03-06 03:00:01 +0400
commit3e4afc6fd2b03616db34098d5131f7f1bd3c0e32 (patch)
tree7edf577714b071f2d08a29ffb7c128bdb35a6c80 /silk/float
parent9cca20aaafe487acc2da1912f77b35de70358640 (diff)
Removes a number of macro definitions which are used nowhere in the codebase.
Diffstat (limited to 'silk/float')
-rw-r--r--silk/float/SigProc_FLP.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/silk/float/SigProc_FLP.h b/silk/float/SigProc_FLP.h
index 8b5a1fac..0fd1a6d9 100644
--- a/silk/float/SigProc_FLP.h
+++ b/silk/float/SigProc_FLP.h
@@ -152,9 +152,6 @@ double silk_energy_FLP(
#define silk_max_float( a, b ) (((a) > (b)) ? (a) : (b))
#define silk_abs_float( a ) ((silk_float)fabs(a))
-#define silk_LIMIT_float( a, limit1, limit2 ) ((limit1) > (limit2) ? ((a) > (limit1) ? (limit1) : ((a) < (limit2) ? (limit2) : (a))) \
- : ((a) > (limit2) ? (limit2) : ((a) < (limit1) ? (limit1) : (a))))
-
/* sigmoid function */
static inline silk_float silk_sigmoid( silk_float x )
{