From d78037e45f941ebf7eb1ad42e47577d749b8bc2d Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Thu, 29 Mar 2012 12:23:04 +0000 Subject: - fixed build-time bug. in some cases average_deviation was commented out instead of spectral_average_deviation --- src/libxtract.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/libxtract.c b/src/libxtract.c index 80a710e..a77c990 100644 --- a/src/libxtract.c +++ b/src/libxtract.c @@ -27,13 +27,13 @@ int(*xtract[])(const float *, const int, const void *, float *) = { xtract_mean, xtract_variance, xtract_standard_deviation, - /* xtract_average_deviation, */ + xtract_average_deviation, xtract_skewness, xtract_kurtosis, xtract_spectral_mean, xtract_spectral_variance, xtract_spectral_standard_deviation, - xtract_spectral_average_deviation, + /* xtract_spectral_average_deviation, */ xtract_spectral_skewness, xtract_spectral_kurtosis, xtract_spectral_centroid, -- cgit v1.2.3