comparison plugin/FeatureExtractionPluginFactory.cpp @ 241:2b40f83e7627

* Make audio file reader factory try for a reader based on the file's extension, before trying all readers * Remove some debug output
author Chris Cannam
date Thu, 01 Mar 2007 12:15:08 +0000
parents 71f869dac40b
children d3ac9f953ebf
comparison
equal deleted inserted replaced
240:8133ae938704 241:2b40f83e7627
123 123
124 while ((descriptor = fn(VAMP_API_VERSION, index))) { 124 while ((descriptor = fn(VAMP_API_VERSION, index))) {
125 QString id = PluginIdentifier::createIdentifier 125 QString id = PluginIdentifier::createIdentifier
126 ("vamp", soname, descriptor->identifier); 126 ("vamp", soname, descriptor->identifier);
127 rv.push_back(id); 127 rv.push_back(id);
128 std::cerr << "Found id " << id.toStdString() << std::endl; 128 // std::cerr << "Found id " << id.toStdString() << std::endl;
129 ++index; 129 ++index;
130 } 130 }
131 131
132 if (DLCLOSE(libraryHandle) != 0) { 132 if (DLCLOSE(libraryHandle) != 0) {
133 std::cerr << "WARNING: FeatureExtractionPluginFactory::getPluginIdentifiers: Failed to unload library " << soname.toStdString() << std::endl; 133 std::cerr << "WARNING: FeatureExtractionPluginFactory::getPluginIdentifiers: Failed to unload library " << soname.toStdString() << std::endl;