comparison TempogramPlugin.cpp @ 54:180624d62a4c

Range should be 30-120 and default 60
author Chris Cannam
date Tue, 30 Sep 2014 17:30:35 +0100
parents b373b9da2de0
children f1c128d0f78c
comparison
equal deleted inserted replaced
53:b373b9da2de0 54:180624d62a4c
243 ParameterDescriptor d9; 243 ParameterDescriptor d9;
244 d9.identifier = "refBPM"; 244 d9.identifier = "refBPM";
245 d9.name = "Cyclic Tempogram Reference Tempo"; 245 d9.name = "Cyclic Tempogram Reference Tempo";
246 d9.description = "The reference tempo used when calculating the Cyclic Tempogram parameter \'s\'."; 246 d9.description = "The reference tempo used when calculating the Cyclic Tempogram parameter \'s\'.";
247 d9.unit = ""; 247 d9.unit = "";
248 d9.minValue = 5; 248 d9.minValue = 30;
249 d9.maxValue = 60; 249 d9.maxValue = 120;
250 d9.defaultValue = 60; 250 d9.defaultValue = 60;
251 d9.isQuantized = true; 251 d9.isQuantized = true;
252 d9.quantizeStep = 1; 252 d9.quantizeStep = 1;
253 list.push_back(d9); 253 list.push_back(d9);
254 254