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/libxtract.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/libxtract.h')
-rw-r--r-- | xtract/libxtract.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 7670c83..8c0dc40 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -53,13 +53,8 @@ extern "C" { * @{ */ -#define XTRACT_FEATURES 45 +#define XTRACT_FEATURES 47 -#define LOG_LIMIT 10e-10 -#define VERY_BIG_NUMBER 2e10 -#define SR_LIMIT 192000 -#define BARK_BANDS 26 - /** \brief Enumeration of features, elements are used as indixes to an array of pointers to feature extracton functions */ enum features_ { MEAN, @@ -89,7 +84,9 @@ enum features_ { ODD_EVEN_RATIO, SHARPNESS, SLOPE, - LOWEST, + LOWEST_VALUE, + HIGHEST_VALUE, + SUM, HPS, F0, FAILSAFE_F0, |