diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-06-04 14:15:19 +0100 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-06-04 14:15:19 +0100 |
commit | e9cac3aa3563133649c90005aacc65d924face2c (patch) | |
tree | 0a180b8dec63f1e761113a545d38b986d8c82d23 /src/scalar.c | |
parent | 2be3394e17cd86932a1658b0e1683fe876943f21 (diff) | |
download | LibXtract-e9cac3aa3563133649c90005aacc65d924face2c.tar.gz LibXtract-e9cac3aa3563133649c90005aacc65d924face2c.tar.bz2 LibXtract-e9cac3aa3563133649c90005aacc65d924face2c.zip |
Correct name for xtract_peak()
Diffstat (limited to 'src/scalar.c')
-rw-r--r-- | src/scalar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scalar.c b/src/scalar.c index 54cb459..e6c6687 100644 --- a/src/scalar.c +++ b/src/scalar.c @@ -1002,7 +1002,7 @@ int xtract_midicent(const double *data, const int N, const void *argv, double *r return XTRACT_SUCCESS; } -int xtract_peak_picker(const double *data, const int N, const void *argv, double *result) +int xtract_peak(const double *data, const int N, const void *argv, double *result) { double threshold = *(double *)argv; double current = data[N - 1]; |