Mercurial > hg > svcore
diff plugin/LADSPAPluginFactory.cpp @ 357:b92513201610
* better progress reporting in FileSource
* fix set-to-default for audio dials with mappers
author | Chris Cannam |
---|---|
date | Fri, 04 Jan 2008 17:08:10 +0000 |
parents | ca3b91119482 |
children | 115f60df1e4d |
line wrap: on
line diff
--- a/plugin/LADSPAPluginFactory.cpp Mon Dec 17 12:32:28 2007 +0000 +++ b/plugin/LADSPAPluginFactory.cpp Fri Jan 04 17:08:10 2008 +0000 @@ -151,7 +151,6 @@ if (LADSPA_IS_HINT_BOUNDED_BELOW(d)) { float lb = descriptor->PortRangeHints[port].LowerBound; - std::cerr << "LADSPAPluginFactory::getPortMinimum: bounded below at " << lb << std::endl; minimum = lb; } else if (LADSPA_IS_HINT_BOUNDED_ABOVE(d)) { float ub = descriptor->PortRangeHints[port].UpperBound; @@ -225,7 +224,7 @@ else logmax = log10f(maximum); } - std::cerr << "LADSPAPluginFactory::getPortDefault: hint = " << d << std::endl; +// std::cerr << "LADSPAPluginFactory::getPortDefault: hint = " << d << std::endl; if (!LADSPA_IS_HINT_HAS_DEFAULT(d)) {