diff vamp-support/RequestResponse.h @ 188:90c962b68d7f

Merge pull request #2 from piper-audio/dev/step-and-block-size Pull step & block size out into framing struct, return in config
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 06 Feb 2017 12:04:25 +0000
parents 3eb00e5c76c4
children 02de5df3a884
line wrap: on
line diff
--- a/vamp-support/RequestResponse.h	Fri Feb 03 13:00:42 2017 +0000
+++ b/vamp-support/RequestResponse.h	Mon Feb 06 12:04:25 2017 +0000
@@ -187,7 +187,10 @@
  * The return value from a configuration request (i.e. setting the
  * parameters and initialising the plugin). If the configuration was
  * successful, the output list will contain the final
- * post-initialisation output descriptors. If configuration failed,
+ * post-initialisation output descriptors and the required step and
+ * block size. (The step and block size will usually match those
+ * passed to configure, but may differ if the parameter settings
+ * turned out to be incompatible with those.) If configuration failed,
  * the output list will be empty.
  *
  * \see PluginConfiguration, ConfigurationRequest, LoadRequest, LoadResponse
@@ -200,6 +203,7 @@
 
     Vamp::Plugin *plugin;
     Vamp::Plugin::OutputList outputs;
+    Framing framing;
 };
 
 /**