diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-12-15 21:17:12 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-12-15 21:17:12 +0000 |
commit | 18fc7723fd66941f394c1657c48bb996670d4ac5 (patch) | |
tree | a86ad8b11263af74875dd979f7d94315a4ae49ed /xtract/libxtract.h | |
parent | 251e328008d541478aba71c46a7444ee2283bcbf (diff) | |
download | LibXtract-18fc7723fd66941f394c1657c48bb996670d4ac5.tar.gz LibXtract-18fc7723fd66941f394c1657c48bb996670d4ac5.tar.bz2 LibXtract-18fc7723fd66941f394c1657c48bb996670d4ac5.zip |
Numerous fixes and enhancements, see ChangeLog.
Diffstat (limited to 'xtract/libxtract.h')
-rw-r--r-- | xtract/libxtract.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 489cddf..7670c83 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -53,7 +53,7 @@ extern "C" { * @{ */ -#define XTRACT_FEATURES 44 +#define XTRACT_FEATURES 45 #define LOG_LIMIT 10e-10 #define VERY_BIG_NUMBER 2e10 @@ -89,9 +89,10 @@ enum features_ { ODD_EVEN_RATIO, SHARPNESS, SLOPE, - LOWEST_MATCH, + LOWEST, HPS, F0, + FAILSAFE_F0, FLUX, ATTACK_TIME, DECAY_TIME, @@ -178,7 +179,7 @@ printf("Mean = %.2f\n", mean); * */ #ifdef XTRACT -extern int(*xtract[XTRACT_FEATURES])(float *data, int N, void *argv, float *result); +extern int(*xtract[XTRACT_FEATURES])(const float *data, const int N, const void *argv, float *result); /** \brief An array of pointers to function help strings * |