aboutsummaryrefslogtreecommitdiff
path: root/xtract/libxtract.h
diff options
context:
space:
mode:
authorJamie Bullock <jamie@postlude.co.uk>2006-10-18 18:33:09 +0000
committerJamie Bullock <jamie@postlude.co.uk>2006-10-18 18:33:09 +0000
commitf5704e4bc7082c1a0b6f7c49d2dcce35713178f6 (patch)
treecbab2b7bb622fea784075da7de8ad7147c03dac9 /xtract/libxtract.h
parent6b59f4325d1b6c81e11cbae6f438cdfb514a89d1 (diff)
downloadLibXtract-f5704e4bc7082c1a0b6f7c49d2dcce35713178f6.tar.gz
LibXtract-f5704e4bc7082c1a0b6f7c49d2dcce35713178f6.tar.bz2
LibXtract-f5704e4bc7082c1a0b6f7c49d2dcce35713178f6.zip
Added help string support, minor fixes.
Diffstat (limited to 'xtract/libxtract.h')
-rw-r--r--xtract/libxtract.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h
index 5de0e32..627046d 100644
--- a/xtract/libxtract.h
+++ b/xtract/libxtract.h
@@ -178,6 +178,13 @@ printf("Mean = %.2f\n", mean);
int(*xtract[XTRACT_FEATURES])(float *data, int N, void *argv, float *result);
#endif
+
+/** \brief An array of pointers to function help strings
+ *
+ * Defined in libxtract.c. As a minimum this will contain pointers to the names of all of the feature extraction functions in the library. This is intended as a 'quick reference' to be queried as necessary.
+ */
+char *xtract_help_strings[XTRACT_FEATURES];
+
/** \brief A structure to store a set of n_filters Mel filters */
typedef struct xtract_mel_filter_ {
int n_filters;