Mercurial > hg > vamp-plugin-sdk
diff vamp-sdk/Plugin.h @ 379:28e7aaed3292
Merge
author | Chris Cannam |
---|---|
date | Fri, 05 Sep 2014 16:13:32 +0100 |
parents | e43186ff8854 |
children | 4a86f866bb6b |
line wrap: on
line diff
--- a/vamp-sdk/Plugin.h Fri Sep 05 09:31:00 2014 +0100 +++ b/vamp-sdk/Plugin.h Fri Sep 05 16:13:32 2014 +0100 @@ -320,8 +320,16 @@ bool hasDuration; OutputDescriptor() : // defaults for mandatory non-class-type members - hasFixedBinCount(false), hasKnownExtents(false), isQuantized(false), - sampleType(OneSamplePerStep), sampleRate(0), hasDuration(false) { } + hasFixedBinCount(false), + binCount(0), + hasKnownExtents(false), + minValue(0), + maxValue(0), + isQuantized(false), + quantizeStep(0), + sampleType(OneSamplePerStep), + sampleRate(0), + hasDuration(false) { } }; typedef std::vector<OutputDescriptor> OutputList;