diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-06-06 09:55:01 +0100 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-06-06 09:55:01 +0100 |
commit | e028f0d8204722f01495ec28edadbb4bdf1b6f1b (patch) | |
tree | ebe19aef151d7f34755163db7c83edd64cdb45b3 /xtract/libxtract.h | |
parent | 0c54ec464079b450e07abe57be680ab88249b76a (diff) | |
download | LibXtract-e028f0d8204722f01495ec28edadbb4bdf1b6f1b.tar.gz LibXtract-e028f0d8204722f01495ec28edadbb4bdf1b6f1b.tar.bz2 LibXtract-e028f0d8204722f01495ec28edadbb4bdf1b6f1b.zip |
Add new helper function xtract_smoothed(), e.g. can be used to extract smoothed spectrum
Diffstat (limited to 'xtract/libxtract.h')
-rw-r--r-- | xtract/libxtract.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 8c20980..e7047de 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -71,7 +71,7 @@ extern "C" { * @{ */ -#define XTRACT_FEATURES 61 +#define XTRACT_FEATURES 62 /** \brief Enumeration of features, elements are used as indixes to an array of pointers to feature extracton functions */ enum xtract_features_ { @@ -137,7 +137,8 @@ enum xtract_features_ { XTRACT_LPCC, XTRACT_SUBBANDS, /* Helper functions */ - XTRACT_WINDOWED + XTRACT_WINDOWED, + XTRACT_SMOOTHED }; /** \brief Enumeration of feature initialisation functions */ |