Mercurial > hg > svcore
comparison plugin/FeatureExtractionPluginFactory.cpp @ 82:bf42d8d63885
* Some work on reloading play parameters from file (not quite working yet)
* Win32: redirect stderr to console
* A bit of menu reorganisation
author | Chris Cannam |
---|---|
date | Wed, 26 Apr 2006 14:09:55 +0000 |
parents | 9e027aa5b5c3 |
children | b2067aff8cd6 |
comparison
equal
deleted
inserted
replaced
81:f277a171749d | 82:bf42d8d63885 |
---|---|
144 | 144 |
145 const VampPluginDescriptor *descriptor = 0; | 145 const VampPluginDescriptor *descriptor = 0; |
146 int index = 0; | 146 int index = 0; |
147 | 147 |
148 while ((descriptor = fn(index))) { | 148 while ((descriptor = fn(index))) { |
149 QString id = QString("vamp:%1:%2").arg(soname).arg(descriptor->name); | 149 QString id = PluginIdentifier::createIdentifier |
150 ("vamp", soname, descriptor->name); | |
150 rv.push_back(id); | 151 rv.push_back(id); |
151 std::cerr << "Found id " << id.toStdString() << std::endl; | 152 std::cerr << "Found id " << id.toStdString() << std::endl; |
152 ++index; | 153 ++index; |
153 } | 154 } |
154 | 155 |