Mercurial > hg > vamp-plugin-sdk
view host/test-c.c @ 434:e979a9c4ffb6 vampipe
Switch from Cross FFT with option of FFTW build, to KissFFT only (code bundled). This is much faster than the default build and simpler than managing two options.
author | Chris Cannam |
---|---|
date | Tue, 16 Aug 2016 16:04:09 +0100 |
parents | 632c662e95e7 |
children |
line wrap: on
line source
#include <vamp-hostsdk/host-c.h> #include <stdio.h> int main(int argc, char **argv) { int i; int libcount = vhGetLibraryCount(); printf("Vamp plugin libraries found:\n"); for (i = 0; i < libcount; ++i) { printf("%d: %s\n", i, vhGetLibraryName(i)); } printf("Going to try loading qm-vamp-plugins...\n"); int libindex = vhGetLibraryIndex("qm-vamp-plugins"); vhLibrary lib = vhLoadLibrary(libindex); if (!lib) { printf("Failure!\n"); return 1; } int plugincount = vhGetPluginCount(lib); printf("Success: it contains %d plugins; they are:\n", plugincount); for (i = 0; i < plugincount; ++i) { const VampPluginDescriptor *descriptor = vhGetPluginDescriptor(lib, i); if (!descriptor) { printf("<unknown! failed to load>\n"); } else { printf("%s\n", descriptor->identifier); } } vhUnloadLibrary(lib); return 0; }