Mercurial > hg > svcore
diff plugin/plugin.pro @ 328:21bd032ae791
* Introduce new Transform class which contains data necessary to describe the
context for a plugin -- the plugin's name and output, the step/block size
etc (formerly spread across ExecutionContext and TransformFactory). Other
code hasn't been updated to use this yet.
* Rename existing Transform stuff to Transformers (because they run Transforms)
I'm still not 100% sure about this change, don't rely on it.
author | Chris Cannam |
---|---|
date | Mon, 05 Nov 2007 15:31:06 +0000 |
parents | 32e50b620a6c |
children | 6e9dcf09b7fe |
line wrap: on
line diff
--- a/plugin/plugin.pro Fri Nov 02 16:50:31 2007 +0000 +++ b/plugin/plugin.pro Mon Nov 05 15:31:06 2007 +0000 @@ -35,11 +35,12 @@ api/alsa/seq_event.h \ api/alsa/seq_midi_event.h \ api/alsa/sound/asequencer.h \ - transform/FeatureExtractionPluginTransform.h \ - transform/PluginTransform.h \ - transform/RealTimePluginTransform.h \ + transform/FeatureExtractionPluginTransformer.h \ + transform/PluginTransformer.h \ + transform/RealTimePluginTransformer.h \ transform/Transform.h \ - transform/TransformFactory.h + transform/Transformer.h \ + transform/TransformerFactory.h SOURCES += DSSIPluginFactory.cpp \ DSSIPluginInstance.cpp \ FeatureExtractionPluginFactory.cpp \ @@ -51,8 +52,9 @@ RealTimePluginInstance.cpp \ api/dssi_alsa_compat.c \ plugins/SamplePlayer.cpp \ - transform/FeatureExtractionPluginTransform.cpp \ - transform/PluginTransform.cpp \ - transform/RealTimePluginTransform.cpp \ + transform/FeatureExtractionPluginTransformer.cpp \ + transform/PluginTransformer.cpp \ + transform/RealTimePluginTransformer.cpp \ transform/Transform.cpp \ - transform/TransformFactory.cpp + transform/Transformer.cpp \ + transform/TransformerFactory.cpp