Makefile.inc: move defaults up, set to sdk 2.5
[vamp-aubio-plugins.git] / plugins / Mfcc.cpp
index d2dab71..75df246 100644 (file)
@@ -142,9 +142,9 @@ Mfcc::getParameterDescriptors() const
     ParameterDescriptor desc;
     desc.identifier = "nfilters";
     desc.name = "Number of filters";
-    desc.description = "Size of filterbank used to compute MFCCs";
-    desc.minValue = 10;
-    desc.maxValue = 100;
+    desc.description = "Size of mel filterbank used to compute MFCCs (fixed to 40 for now)";
+    desc.minValue = 40;
+    desc.maxValue = 40;
     desc.defaultValue = 40;
     desc.isQuantized = true;
     desc.quantizeStep = 1;
@@ -193,7 +193,7 @@ Mfcc::getOutputDescriptors() const
 
     OutputDescriptor d;
     d.identifier = "mfcc";
-    d.name = "Mfcc";
+    d.name = "Mel-Frequency Cepstrum Coefficients";
     d.description = "List of detected Mel-Frequency Cepstrum Coefficients";
     d.unit = "";
     d.hasFixedBinCount = true;