# HG changeset patch # User cannam # Date 1194015312 0 # Node ID cd72c04733417d024976838d7946ecbcc8d512fa # Parent c94c066a4897be5520c1253851606a6d28095f28 ... diff -r c94c066a4897 -r cd72c0473341 vamp-sdk/hostext/PluginLoader.h --- a/vamp-sdk/hostext/PluginLoader.h Fri Nov 02 14:54:04 2007 +0000 +++ b/vamp-sdk/hostext/PluginLoader.h Fri Nov 02 14:55:12 2007 +0000 @@ -154,10 +154,7 @@ * ADAPT_ALL_SAFE - Perform all available adaptations that are * meaningful for the plugin and "safe". Currently this means to * ADAPT_INPUT_DOMAIN if the plugin wants FrequencyDomain input; - * ADAPT_CHANNEL_COUNT always; and ADAPT_BUFFER_SIZE only if the - * input domain is being adapted but the plugin's preferred block - * size is not a power of two (the PluginInputDomainAdapter cannot - * handle non-power-of-two block sizes). + * ADAPT_CHANNEL_COUNT always; and ADAPT_BUFFER_SIZE never. * * ADAPT_ALL - Perform all available adaptations that are * meaningful for the plugin. @@ -172,7 +169,7 @@ ADAPT_CHANNEL_COUNT = 0x02, ADAPT_BUFFER_SIZE = 0x04, - ADAPT_ALL_SAFE = 0x80, + ADAPT_ALL_SAFE = 0x03, ADAPT_ALL = 0xff };