# HG changeset patch # User Chris Cannam # Date 1172520531 0 # Node ID 76635085e2d91835c59dc97dda609e466d08a99c # Parent 3a6af0e5e2d1f32d681ceea14490b6e29deb1152 * Fixes for new Vamp API changes -- I think plugin parameters are not being set correctly yet though diff -r 3a6af0e5e2d1 -r 76635085e2d9 plugin/FeatureExtractionPluginFactory.cpp --- 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; }