Mercurial > hg > vamp-plugin-sdk
diff README @ 51:2403ae53b8a5 vamp-plugin-sdk-v1.0pre1
* Split out the host adapter code into a separate host sdk library.
Plugins link against libvamp-sdk, hosts against libvamp-hostsdk.
author | cannam |
---|---|
date | Fri, 02 Mar 2007 12:26:53 +0000 |
parents | ce61ad9b9159 |
children | 0284955e31e5 9d3272c7db60 |
line wrap: on
line diff
--- a/README Tue Feb 27 12:48:17 2007 +0000 +++ b/README Fri Mar 02 12:26:53 2007 +0000 @@ -70,10 +70,12 @@ Plugins should subclass Vamp::Plugin and then use a Vamp::PluginAdapter to expose the correct C API for the plugin. Read -vamp-sdk/PluginBase.h and Plugin.h for code documentation. +vamp-sdk/PluginBase.h and Plugin.h for code documentation. Plugins +should link with -lvamp-sdk. Hosts may use the Vamp::PluginHostAdapter to convert the loaded -plugin's C API back into a Vamp::Plugin object. +plugin's C API back into a Vamp::Plugin object. Hosts should link +with -lvamp-hostsdk. * examples