Mercurial > hg > vamp-aubio-plugins
diff plugins/Mfcc.cpp @ 96:66c38be4c67d
plugins/{Mfcc,MelEnergy}.cpp: fix mel filters to 40 for now, improve description
author | Paul Brossier <piem@piem.org> |
---|---|
date | Sat, 31 Jan 2015 13:33:26 +0100 |
parents | f482dafd340a |
children | b147d06397bc |
line wrap: on
line diff
--- a/plugins/Mfcc.cpp Sat Jan 31 13:14:26 2015 +0100 +++ b/plugins/Mfcc.cpp Sat Jan 31 13:33:26 2015 +0100 @@ -142,9 +142,9 @@ 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;