plugins/{MelEnergy,Mfcc,SpecDesc}.{cpp,h}: change package name to vamp-aubio-plugins
[vamp-aubio-plugins.git] / plugins / Mfcc.cpp
index d2dab71..0ebc518 100644 (file)
@@ -5,7 +5,7 @@
 
     Copyright (C) 2006-2015 Paul Brossier <piem@aubio.org>
 
-    This file is part of vamp-aubio.
+    This file is part of vamp-aubio-plugins.
 
     vamp-aubio is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -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;