summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/pseudofloat.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libspeex/pseudofloat.h')
-rw-r--r--apps/codecs/libspeex/pseudofloat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/codecs/libspeex/pseudofloat.h b/apps/codecs/libspeex/pseudofloat.h
index 05542f1d7f..9d588642a8 100644
--- a/apps/codecs/libspeex/pseudofloat.h
+++ b/apps/codecs/libspeex/pseudofloat.h
@@ -59,6 +59,10 @@ static const spx_float_t FLOAT_ZERO = {0,0};
59static const spx_float_t FLOAT_ONE = {16384,-14}; 59static const spx_float_t FLOAT_ONE = {16384,-14};
60static const spx_float_t FLOAT_HALF = {16384,-15}; 60static const spx_float_t FLOAT_HALF = {16384,-15};
61 61
62#ifdef MIN
63#undef MIN
64#endif
65#define MIN(a,b) ((a)<(b)?(a):(b))
62static inline spx_float_t PSEUDOFLOAT(spx_int32_t x) 66static inline spx_float_t PSEUDOFLOAT(spx_int32_t x)
63{ 67{
64 int e=0; 68 int e=0;