changeset 93:cd72c0473341

...
author cannam
date Fri, 02 Nov 2007 14:55:12 +0000
parents c94c066a4897
children 70bcd0b62cba
files vamp-sdk/hostext/PluginLoader.h
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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
     };