diff vamp-support/RequestResponse.h @ 185:3eb00e5c76c4

Pull step & block size out into framing struct, return in config Update the C++ code to separate out the framing parameters (step and block size) from the configuration structure into their own structure, as in the latest schema, and to return the accepted framing params in the configuration response. This also implies that the plugin stub (which adapts Piper API back to Vamp) makes a note of the returned values, making them available via its own getPreferredStep/BlockSize so that the host can retry the initialise call in the case where it failed for having the wrong values first time.
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 03 Feb 2017 16:23:21 +0000
parents 5b113c87b6e6
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	Fri Feb 03 16:23:21 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;
 };
 
 /**