aboutsummaryrefslogtreecommitdiff
path: root/xtract
diff options
context:
space:
mode:
authorJamie Bullock <jamie@postlude.co.uk>2007-08-20 08:12:04 +0000
committerJamie Bullock <jamie@postlude.co.uk>2007-08-20 08:12:04 +0000
commitd57b2ba82498d427a36b8ed26e13b6c039a23cb6 (patch)
tree984a78b9f2ddc2863445dc736ff5f5fc10c00ea1 /xtract
parent47923b5be4f46484846d2443ce1b72a0b6506f1d (diff)
downloadLibXtract-d57b2ba82498d427a36b8ed26e13b6c039a23cb6.tar.gz
LibXtract-d57b2ba82498d427a36b8ed26e13b6c039a23cb6.tar.bz2
LibXtract-d57b2ba82498d427a36b8ed26e13b6c039a23cb6.zip
Minor mods and typos corrections that were lurking uncommitted
Diffstat (limited to 'xtract')
-rw-r--r--xtract/libxtract.h3
-rw-r--r--xtract/xtract_scalar.h4
-rw-r--r--xtract/xtract_vector.h4
3 files changed, 7 insertions, 4 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h
index b4808ba..af69758 100644
--- a/xtract/libxtract.h
+++ b/xtract/libxtract.h
@@ -27,6 +27,9 @@
*
* Hopefully this not only makes the library more efficient when computing large numbers of features, but also makes it more flexible because extraction functions can be combined arbitrarily (one can take the irregularility of the Mel Frequency Cepstral Coefficients for example).
*
+ *
+ * LibXtract can be downloaded from http://www.sf.net/projects/libxtract
+ *
*/
#ifndef XTRACT_H
diff --git a/xtract/xtract_scalar.h b/xtract/xtract_scalar.h
index a2e2d7b..0496eed 100644
--- a/xtract/xtract_scalar.h
+++ b/xtract/xtract_scalar.h
@@ -28,7 +28,7 @@ extern "C" {
#endif
/**
- * \defgroup scalar extraction functions
+ * \defgroup scalar scalar extraction functions
*
* Defines scalar extraction functions, and their parameters.
* @{
@@ -200,7 +200,7 @@ int xtract_smoothness(const float *data, const int N, const void *argv, float *r
*
* \param *data: a pointer to the first element in an array of floats representing the magnitude coefficients from the spectrum of an audio vector, (e.g. the first half of the array pointed to by *result from xtract_spectrum().
* \param N: the number of elements to be considered
- * \param *argv: a pointer to NULL
+ * \param *argv: a pointer to a float corresponding to the spectral centroid
* \param *result: the spectral spread of N values from the array pointed to by *data
*/
int xtract_spread(const float *data, const int N, const void *argv, float *result);
diff --git a/xtract/xtract_vector.h b/xtract/xtract_vector.h
index 3a626d6..ad97f16 100644
--- a/xtract/xtract_vector.h
+++ b/xtract/xtract_vector.h
@@ -28,9 +28,9 @@ extern "C" {
#endif
/**
- * \defgroup vector extraction functions
+ * \defgroup vector vector extraction functions
*
- * Defines vectorr extraction functions, and their parameters.
+ * Defines vector extraction functions, and their parameters.
* @{
*/