Mercurial > hg > svcore
comparison plugin/FeatureExtractionPluginFactory.cpp @ 1180:98664afd518b pluginscan
Update for adjusted checker layout, and tidy
author | Chris Cannam |
---|---|
date | Thu, 14 Apr 2016 16:52:55 +0100 |
parents | 6b1af0f05f06 |
children | 385deb828b4a |
comparison
equal
deleted
inserted
replaced
1179:6b1af0f05f06 | 1180:98664afd518b |
---|---|
117 { | 117 { |
118 Profiler profiler("FeatureExtractionPluginFactory::getPluginIdentifiers"); | 118 Profiler profiler("FeatureExtractionPluginFactory::getPluginIdentifiers"); |
119 | 119 |
120 vector<QString> rv; | 120 vector<QString> rv; |
121 | 121 |
122 QStringList candidates = | 122 QStringList candidates = PluginScan::getInstance()->getCandidateLibrariesFor |
123 PluginScan::getInstance()->getCandidateVampLibraries(); | 123 (PluginScan::VampPlugin); |
124 | 124 |
125 for (QString soname : candidates) { | 125 for (QString soname : candidates) { |
126 | 126 |
127 void *libraryHandle = DLOPEN(soname, RTLD_LAZY | RTLD_LOCAL); | 127 void *libraryHandle = DLOPEN(soname, RTLD_LAZY | RTLD_LOCAL); |
128 | 128 |