diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-03-11 18:14:45 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-03-11 18:14:45 +0000 |
commit | c7e8efcbea13ca27f1b6f5619f05e1f79d36ba55 (patch) | |
tree | 71f8135a795027a386f4e91f4c773346a0d09d5c /xtract/xtract_scalar.h | |
parent | 14c4d07be16ce3ba36d28eeef507afdc1afed8f6 (diff) | |
download | LibXtract-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/xtract_scalar.h')
-rw-r--r-- | xtract/xtract_scalar.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xtract/xtract_scalar.h b/xtract/xtract_scalar.h index e18aea6..4e39fd9 100644 --- a/xtract/xtract_scalar.h +++ b/xtract/xtract_scalar.h @@ -434,6 +434,19 @@ int xtract_failsafe_f0(const double *data, const int N, const void *argv, double */ int xtract_wavelet_f0(const double *data, const int N, const void *argv, double *result); + +/** \brief Convenience function to convert a frequency in Hertz to a "pitch" value in MIDI cents + * + * \param *data: not used + * \param N: not used + * \param *argv: a pointer to a double-precision floating point value representing a frequency in Hertz + * \param *result: a pointer to a double-precision floating point value representing a "pitch" in MIDI cents + * \return if *argv value causes a *result within the range 0..127, XTRACT_SUCCESS will be returned, otherwise XTRACT_ARGUMENT_ERROR + * + */ +int xtract_midicent(const double *data, const int N, const void *argv, double *result); + + /** \brief Extract the number of non-zero elements in an input vector * * \param *data: a pointer to the first element in an array of doubles |