aboutsummaryrefslogtreecommitdiff
path: root/xtract/libxtract.h
diff options
context:
space:
mode:
authorJamie Bullock <jamie@jamiebullock.com>2014-03-11 18:14:45 +0000
committerJamie Bullock <jamie@jamiebullock.com>2014-03-11 18:14:45 +0000
commitc7e8efcbea13ca27f1b6f5619f05e1f79d36ba55 (patch)
tree71f8135a795027a386f4e91f4c773346a0d09d5c /xtract/libxtract.h
parent14c4d07be16ce3ba36d28eeef507afdc1afed8f6 (diff)
downloadLibXtract-c7e8efcbea13ca27f1b6f5619f05e1f79d36ba55.tar.gz
LibXtract-c7e8efcbea13ca27f1b6f5619f05e1f79d36ba55.tar.bz2
LibXtract-c7e8efcbea13ca27f1b6f5619f05e1f79d36ba55.zip
Add xtract_midicent() convenience function to convert from frequency to MIDI cent
Diffstat (limited to 'xtract/libxtract.h')
-rw-r--r--xtract/libxtract.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h
index ce12e14..1f4a787 100644
--- a/xtract/libxtract.h
+++ b/xtract/libxtract.h
@@ -71,7 +71,7 @@ extern "C" {
* @{
*/
-#define XTRACT_FEATURES 60
+#define XTRACT_FEATURES 61
/** \brief Enumeration of features, elements are used as indixes to an array of pointers to feature extracton functions */
enum xtract_features_ {
@@ -117,6 +117,7 @@ enum xtract_features_ {
XTRACT_F0,
XTRACT_FAILSAFE_F0,
XTRACT_WAVELET_F0,
+ XTRACT_MIDICENT,
XTRACT_LNORM,
XTRACT_FLUX,
XTRACT_ATTACK_TIME,
@@ -208,7 +209,8 @@ typedef enum unit_ {
XTRACT_DBFS_HERTZ,
XTRACT_PERCENT,
XTRACT_BINS,
- XTRACT_SONE
+ XTRACT_SONE,
+ XTRACT_MIDI_CENT
} xtract_unit_t;
/** \brief Boolean */