From 46ee1ba4b2e3eda3e14abfc969356f6dcb0c6dc0 Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Wed, 20 Dec 2006 15:34:56 +0000 Subject: Added new features: sum, highest_value, crest and noisiness --- xtract/xtract_macros.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'xtract/xtract_macros.h') diff --git a/xtract/xtract_macros.h b/xtract/xtract_macros.h index 3ee97b2..f2a89b7 100644 --- a/xtract/xtract_macros.h +++ b/xtract/xtract_macros.h @@ -36,6 +36,13 @@ extern "C" { #define MAX(a, b) ((a) > (b) ? (a) : (b)) #define NEEDS_FFTW printf("LibXtract must be compiled with fftw support to use this function.\n") +#define VERY_SMALL_NUMBER 1e-20 +#define LOG_LIMIT VERY_SMALL_NUMBER +#define VERY_BIG_NUMBER 1e20 +#define SR_LIMIT 192000 +#define BARK_BANDS 26 + + #ifdef __cplusplus } #endif -- cgit v1.2.3