Mercurial > hg > vamp-plugin-sdk
diff README @ 32:13eae6cc6bac
* Add a function to look up the Vamp plugin path for the current platform.
* Add make install stage and pkgconfig files.
(This bit is rather Linux-specific.)
author | cannam |
---|---|
date | Mon, 31 Jul 2006 16:12:37 +0000 |
parents | 0e7aa8fabd76 |
children | 154f86cb8c99 |
line wrap: on
line diff
--- a/README Wed May 17 16:41:37 2006 +0000 +++ b/README Mon Jul 31 16:12:37 2006 +0000 @@ -87,6 +87,14 @@ it to process a complete audio file, with its default parameters. Requires libsndfile. +The Vamp API doesn't officially specify how to load plugin libraries +or where to find them. However, good practice for a host is to use +the Vamp path returned by Vamp::PluginHostAdapter::getPluginPath() and +search each directory in this path for .so, .dll or .dylib files +(depending on platform), loading each one and testing for the +vampGetPluginDescriptor function to enumerate the plugins in this +object. The example host has some code that may help. + Building the SDK ================