diff transform/FeatureExtractionPluginTransform.cpp @ 107:dd11619b73ba

* Update along with latest Vamp API change. This has not yet been tested.
author Chris Cannam
date Mon, 26 Feb 2007 18:13:07 +0000
parents c1318aac18d2
children b4110b17bca8
line wrap: on
line diff
--- a/transform/FeatureExtractionPluginTransform.cpp	Mon Feb 26 16:32:37 2007 +0000
+++ b/transform/FeatureExtractionPluginTransform.cpp	Mon Feb 26 18:13:07 2007 +0000
@@ -90,7 +90,7 @@
                               m_context.stepSize,
                               m_context.blockSize)) {
         std::cerr << "FeatureExtractionPluginTransform: Plugin "
-                  << m_plugin->getName() << " failed to initialise!" << std::endl;
+                  << m_plugin->getIdentifier() << " failed to initialise!" << std::endl;
         return;
     }
 
@@ -103,7 +103,7 @@
     }
     
     for (size_t i = 0; i < outputs.size(); ++i) {
-	if (outputName == "" || outputs[i].name == outputName.toStdString()) {
+	if (outputName == "" || outputs[i].identifier == outputName.toStdString()) {
 	    m_outputFeatureNo = i;
 	    m_descriptor = new Vamp::Plugin::OutputDescriptor
 		(outputs[i]);