Mercurial > hg > piper-cpp
diff vamp-support/LoaderRequests.h @ 150:bf8e3e7dd7de
Move some things around, and add overall test script
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 20 Jan 2017 17:45:54 +0000 |
parents | 3dcf0394971d |
children | 3eb00e5c76c4 |
line wrap: on
line diff
--- a/vamp-support/LoaderRequests.h Thu Jan 19 14:05:21 2017 +0000 +++ b/vamp-support/LoaderRequests.h Fri Jan 20 17:45:54 2017 +0000 @@ -56,7 +56,7 @@ auto loader = Vamp::HostExt::PluginLoader::getInstance(); - std::cerr << "listPluginData: about to ask loader to list plugins" << std::endl; +// std::cerr << "listPluginData: about to ask loader to list plugins" << std::endl; std::vector<std::string> keys; if (req.from.empty()) { @@ -65,11 +65,11 @@ keys = loader->listPluginsIn(req.from); } - std::cerr << "listPluginData: loader listed " << keys.size() << " plugins" << std::endl; +// std::cerr << "listPluginData: loader listed " << keys.size() << " plugins" << std::endl; ListResponse response; for (std::string key: keys) { - std::cerr << "listPluginData: loading plugin and querying static data: " << key << std::endl; +// std::cerr << "listPluginData: loading plugin and querying static data: " << key << std::endl; Vamp::Plugin *p = loader->loadPlugin(key, 44100, 0); if (!p) continue; auto category = loader->getPluginCategory(key);