diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2007-01-11 16:37:50 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2007-01-11 16:37:50 +0000 |
commit | 03faa4383048ec211eea920c6ec56544037191c9 (patch) | |
tree | 296fb7f69e876162802a2ee8844bf5649a02db00 /src/scalar.c | |
parent | b654be00cfb5275b289e683af7b67de6ee471854 (diff) | |
download | LibXtract-03faa4383048ec211eea920c6ec56544037191c9.tar.gz LibXtract-03faa4383048ec211eea920c6ec56544037191c9.tar.bz2 LibXtract-03faa4383048ec211eea920c6ec56544037191c9.zip |
Fleshed out function descriptors.
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 9b6d9f3..6e7faeb 100644 --- a/src/scalar.c +++ b/src/scalar.c @@ -778,7 +778,7 @@ int xtract_failsafe_f0(const float *data, const int N, const void *argv, float * magnitudes = (float *)malloc(N * sizeof(float)); peaks = (float *)malloc(N * sizeof(float)); - xtract_magnitude_spectrum(data, N, argv, magnitudes); + xtract_spectrum(data, N, argv, magnitudes); argf[0] = 10.f; argf[1] = *(float *)argv; xtract_peak_spectrum(magnitudes, N, argf, peaks); |