Mercurial > hg > svcore
diff plugin/FeatureExtractionPluginFactory.cpp @ 238:76635085e2d9
* Fixes for new Vamp API changes -- I think plugin parameters are not being
set correctly yet though
author | Chris Cannam |
---|---|
date | Mon, 26 Feb 2007 20:08:51 +0000 |
parents | 91fdc752e540 |
children | 71f869dac40b |
line wrap: on
line diff
--- a/plugin/FeatureExtractionPluginFactory.cpp Mon Feb 26 18:13:07 2007 +0000 +++ b/plugin/FeatureExtractionPluginFactory.cpp Mon Feb 26 20:08:51 2007 +0000 @@ -123,7 +123,7 @@ while ((descriptor = fn(index))) { QString id = PluginIdentifier::createIdentifier - ("vamp", soname, descriptor->name); + ("vamp", soname, descriptor->identifier); rv.push_back(id); std::cerr << "Found id " << id.toStdString() << std::endl; ++index; @@ -233,7 +233,7 @@ } while ((descriptor = fn(index))) { - if (label == descriptor->name) break; + if (label == descriptor->identifier) break; ++index; }