Mercurial > hg > vamp-plugin-sdk
diff vamp/vamp.h @ 9:44113b1e296b
* Add valueNames to parameter descriptor
* Change valueCount and valueNames to binCount and binNames in output
descriptor, to avoid confusion with other uses of value
* Some explanatory notes about FFT alignment
author | cannam |
---|---|
date | Wed, 05 Apr 2006 16:50:07 +0000 |
parents | 8f10d35a4090 |
children | a3d35e11c3fe |
line wrap: on
line diff
--- a/vamp/vamp.h Mon Apr 03 14:19:02 2006 +0000 +++ b/vamp/vamp.h Wed Apr 05 16:50:07 2006 +0000 @@ -61,6 +61,7 @@ float defaultValue; int isQuantized; float quantizeStep; + const char **valueNames; } VampParameterDescriptor; @@ -77,9 +78,9 @@ const char *name; const char *description; const char *unit; - int hasFixedValueCount; - unsigned int valueCount; - const char **valueNames; + int hasFixedBinCount; + unsigned int binCount; + const char **binNames; int hasKnownExtents; float minValue; float maxValue;