comparison transform/TransformFactory.h @ 73:e200055fe80b

* Add vertical zooming and snap-to-selection for OSC control; add a demo script
author Chris Cannam
date Wed, 15 Nov 2006 18:22:26 +0000
parents 94f1c2747de4
children bedc7517b6e8
comparison
equal deleted inserted replaced
72:34dc23246f46 73:e200055fe80b
88 PluginTransform::ExecutionContext &context, 88 PluginTransform::ExecutionContext &context,
89 QString &configurationXml, 89 QString &configurationXml,
90 AudioCallbackPlaySource *source = 0); 90 AudioCallbackPlaySource *source = 0);
91 91
92 /** 92 /**
93 * Get the default execution context for the given transform
94 * and input model (if known).
95 */
96 PluginTransform::ExecutionContext getDefaultContextForTransform(TransformName name,
97 Model *inputModel = 0);
98
99 /**
93 * Return the output model resulting from applying the named 100 * Return the output model resulting from applying the named
94 * transform to the given input model. The transform may still be 101 * transform to the given input model. The transform may still be
95 * working in the background when the model is returned; check the 102 * working in the background when the model is returned; check the
96 * output model's isReady completion status for more details. 103 * output model's isReady completion status for more details.
97 * 104 *