Mercurial > hg > svcore
view 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 source
TEMPLATE = lib SV_UNIT_PACKAGES = vamp vamp-hostsdk lrdf raptor load(../sv.prf) CONFIG += sv staticlib qt thread warn_on stl rtti exceptions QT += xml TARGET = svplugin # Doesn't work with this library, which contains C99 as well as C++ PRECOMPILED_HEADER = DEPENDPATH += . .. api plugins api/alsa api/alsa/sound transform INCLUDEPATH += . .. api api/alsa plugins api/alsa/sound transform OBJECTS_DIR = tmp_obj MOC_DIR = tmp_moc # Input HEADERS += DSSIPluginFactory.h \ DSSIPluginInstance.h \ FeatureExtractionPluginFactory.h \ LADSPAPluginFactory.h \ LADSPAPluginInstance.h \ PluginIdentifier.h \ PluginXml.h \ RealTimePluginFactory.h \ RealTimePluginInstance.h \ api/dssi.h \ api/ladspa.h \ plugins/SamplePlayer.h \ api/alsa/asoundef.h \ api/alsa/asoundlib.h \ api/alsa/seq.h \ api/alsa/seq_event.h \ api/alsa/seq_midi_event.h \ api/alsa/sound/asequencer.h \ transform/FeatureExtractionPluginTransformer.h \ transform/PluginTransformer.h \ transform/RealTimePluginTransformer.h \ transform/Transform.h \ transform/Transformer.h \ transform/TransformerFactory.h SOURCES += DSSIPluginFactory.cpp \ DSSIPluginInstance.cpp \ FeatureExtractionPluginFactory.cpp \ LADSPAPluginFactory.cpp \ LADSPAPluginInstance.cpp \ PluginIdentifier.cpp \ PluginXml.cpp \ RealTimePluginFactory.cpp \ RealTimePluginInstance.cpp \ api/dssi_alsa_compat.c \ plugins/SamplePlayer.cpp \ transform/FeatureExtractionPluginTransformer.cpp \ transform/PluginTransformer.cpp \ transform/RealTimePluginTransformer.cpp \ transform/Transform.cpp \ transform/Transformer.cpp \ transform/TransformerFactory.cpp