diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-12-20 15:34:56 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-12-20 15:34:56 +0000 |
commit | 46ee1ba4b2e3eda3e14abfc969356f6dcb0c6dc0 (patch) | |
tree | 33d043207bb8845ef9cd6a9f6c6a99cfd55a35fa /xtract/xtract_macros.h | |
parent | e5051b14a4642a6a6c6097c0ae24ecdfa53594e9 (diff) | |
download | LibXtract-46ee1ba4b2e3eda3e14abfc969356f6dcb0c6dc0.tar.gz LibXtract-46ee1ba4b2e3eda3e14abfc969356f6dcb0c6dc0.tar.bz2 LibXtract-46ee1ba4b2e3eda3e14abfc969356f6dcb0c6dc0.zip |
Added new features: sum, highest_value, crest and noisiness
Diffstat (limited to 'xtract/xtract_macros.h')
-rw-r--r-- | xtract/xtract_macros.h | 7 |
1 files changed, 7 insertions, 0 deletions
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 |