We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5478241 commit e5ea11dCopy full SHA for e5ea11d
libspeexdsp/mdf.c
@@ -88,12 +88,6 @@
88
#define WEIGHT_SHIFT 0
89
#endif
90
91
-#ifdef FIXED_POINT
92
-#define WORD2INT(x) ((x) < -32767 ? -32768 : ((x) > 32766 ? 32767 : (x)))
93
-#else
94
-#define WORD2INT(x) ((x) < -32767.5f ? -32768 : ((x) > 32766.5f ? 32767 : floor(.5+(x))))
95
-#endif
96
-
97
/* If enabled, the AEC will use a foreground filter and a background filter to be more robust to double-talk
98
and difficult signals in general. The cost is an extra FFT and a matrix-vector multiply */
99
#define TWO_PATH
0 commit comments