comparison win32-mingw/include/vamp-sdk/Plugin.h @ 108:1813f30f2f15

Update Vamp plugin SDK to 2.5
author Chris Cannam <cannam@all-day-breakfast.com>
date Thu, 09 May 2013 10:52:46 +0100
parents c6e1ae789cfb
children
comparison
equal deleted inserted replaced
107:71c914cf6201 108:1813f30f2f15
319 */ 319 */
320 bool hasDuration; 320 bool hasDuration;
321 321
322 OutputDescriptor() : // defaults for mandatory non-class-type members 322 OutputDescriptor() : // defaults for mandatory non-class-type members
323 hasFixedBinCount(false), hasKnownExtents(false), isQuantized(false), 323 hasFixedBinCount(false), hasKnownExtents(false), isQuantized(false),
324 sampleType(OneSamplePerStep), hasDuration(false) { } 324 sampleType(OneSamplePerStep), sampleRate(0), hasDuration(false) { }
325 }; 325 };
326 326
327 typedef std::vector<OutputDescriptor> OutputList; 327 typedef std::vector<OutputDescriptor> OutputList;
328 328
329 /** 329 /**