Mercurial > hg > vamp-aubio-plugins
comparison plugins/MelEnergy.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 | e6815bf4a826 |
children | b147d06397bc |
comparison
equal
deleted
inserted
replaced
95:46e40a39dcf2 | 96:66c38be4c67d |
---|---|
144 ParameterList list; | 144 ParameterList list; |
145 | 145 |
146 ParameterDescriptor desc; | 146 ParameterDescriptor desc; |
147 desc.identifier = "nfilters"; | 147 desc.identifier = "nfilters"; |
148 desc.name = "Number of filters"; | 148 desc.name = "Number of filters"; |
149 desc.description = "Size of filterbank used to Mel Bands (40)"; | 149 desc.description = "Size of filterbank used to compute mel bands (fixed to 40 for now)"; |
150 desc.minValue = 40; | 150 desc.minValue = 40; |
151 desc.maxValue = 40; | 151 desc.maxValue = 40; |
152 desc.defaultValue = 40; | 152 desc.defaultValue = 40; |
153 desc.isQuantized = true; | 153 desc.isQuantized = true; |
154 desc.quantizeStep = 1; | 154 desc.quantizeStep = 1; |