Mercurial > hg > svcore
comparison transform/TransformFactory.cpp @ 117:c30728d5625c sv1-v0.9rc1
* Make vertical scale alignment modes work in note layer as well as time-value
layer, and several significant fixes to it
* Make it possible to draw notes properly on the note layer
* Show units (and frequencies etc in note layer's case) in the time-value and
note layer description boxes
* Minor fix to item edit dialog layout
* Some minor menu rearrangement
* Comment out a lot of debug output
* Add SV website and reference URLs to Help menu, and add code to (attempt to)
open them in the user's preferred browser
author | Chris Cannam |
---|---|
date | Fri, 12 May 2006 14:40:43 +0000 |
parents | 0a846f83a4b7 |
children | 3d67c2fd2217 |
comparison
equal
deleted
inserted
replaced
116:a08718723b20 | 117:c30728d5625c |
---|---|
215 } | 215 } |
216 | 216 |
217 if (descriptor->controlOutputPortCount == 0 || | 217 if (descriptor->controlOutputPortCount == 0 || |
218 descriptor->audioInputPortCount == 0) continue; | 218 descriptor->audioInputPortCount == 0) continue; |
219 | 219 |
220 std::cout << "TransformFactory::populateRealTimePlugins: plugin " << pluginId.toStdString() << " has " << descriptor->controlOutputPortCount << " output ports" << std::endl; | 220 // std::cout << "TransformFactory::populateRealTimePlugins: plugin " << pluginId.toStdString() << " has " << descriptor->controlOutputPortCount << " output ports" << std::endl; |
221 | 221 |
222 QString pluginDescription = descriptor->name.c_str(); | 222 QString pluginDescription = descriptor->name.c_str(); |
223 | 223 |
224 for (size_t j = 0; j < descriptor->controlOutputPortCount; ++j) { | 224 for (size_t j = 0; j < descriptor->controlOutputPortCount; ++j) { |
225 | 225 |
357 QString output = name.section(':', 3); | 357 QString output = name.section(':', 3); |
358 | 358 |
359 bool ok = false; | 359 bool ok = false; |
360 configurationXml = m_lastConfigurations[name]; | 360 configurationXml = m_lastConfigurations[name]; |
361 | 361 |
362 std::cerr << "last configuration: " << configurationXml.toStdString() << std::endl; | 362 // std::cerr << "last configuration: " << configurationXml.toStdString() << std::endl; |
363 | 363 |
364 Vamp::PluginBase *plugin = 0; | 364 Vamp::PluginBase *plugin = 0; |
365 | 365 |
366 if (FeatureExtractionPluginFactory::instanceFor(id)) { | 366 if (FeatureExtractionPluginFactory::instanceFor(id)) { |
367 | 367 |