changeset 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 3a6af0e5e2d1
children 71f869dac40b
files plugin/FeatureExtractionPluginFactory.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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;
     }