diff options
-rw-r--r-- | config.h.in | 3 | ||||
-rw-r--r-- | xtract/libxtract.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in index 0735bf0..58c3175 100644 --- a/config.h.in +++ b/config.h.in @@ -45,6 +45,9 @@ /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H +/* LibXtract Version */ +#undef LIBXTRACT_VERSION + /* Name of package */ #undef PACKAGE diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 627046d..81f261f 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -176,7 +176,6 @@ printf("Mean = %.2f\n", mean); */ #ifdef XTRACT int(*xtract[XTRACT_FEATURES])(float *data, int N, void *argv, float *result); -#endif /** \brief An array of pointers to function help strings @@ -184,6 +183,7 @@ int(*xtract[XTRACT_FEATURES])(float *data, int N, void *argv, float *result); * 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]; +#endif /** \brief A structure to store a set of n_filters Mel filters */ typedef struct xtract_mel_filter_ { |