Mercurial > hg > vamp-plugin-sdk
diff vamp-sdk/hostext/PluginLoader.cpp @ 92:c94c066a4897
* Add Mark L's PluginBufferingAdapter
author | cannam |
---|---|
date | Fri, 02 Nov 2007 14:54:04 +0000 |
parents | 6bf198e06d72 |
children | ca44b3594d2e |
line wrap: on
line diff
--- a/vamp-sdk/hostext/PluginLoader.cpp Thu Nov 01 10:25:35 2007 +0000 +++ b/vamp-sdk/hostext/PluginLoader.cpp Fri Nov 02 14:54:04 2007 +0000 @@ -38,6 +38,7 @@ #include "PluginLoader.h" #include "PluginInputDomainAdapter.h" #include "PluginChannelAdapter.h" +#include "PluginBufferingAdapter.h" #include <fstream> #include <cctype> // tolower @@ -366,6 +367,10 @@ } } + if (adapterFlags & ADAPT_BUFFER_SIZE) { + adapter = new PluginBufferingAdapter(adapter); + } + if (adapterFlags & ADAPT_CHANNEL_COUNT) { adapter = new PluginChannelAdapter(adapter); }