annotate transform/RealTimePluginTransform.h @ 60:3086ff194ea0

* More structural work on feature extraction plugin C <-> C++ adapter * Allow use of LADSPA/DSSI plugins with control outputs as feature extraction plugins (DSSI with MIDI output still to come) * Reorder labels on spectrogram status box * Minor tweaks in doc etc.
author Chris Cannam
date Mon, 27 Mar 2006 15:03:02 +0000
parents
children ba405e5e69d3
rev   line source
Chris@60 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@60 2
Chris@60 3 /*
Chris@60 4 Sonic Visualiser
Chris@60 5 An audio file viewer and annotation editor.
Chris@60 6 Centre for Digital Music, Queen Mary, University of London.
Chris@60 7 This file copyright 2006 Chris Cannam.
Chris@60 8
Chris@60 9 This program is free software; you can redistribute it and/or
Chris@60 10 modify it under the terms of the GNU General Public License as
Chris@60 11 published by the Free Software Foundation; either version 2 of the
Chris@60 12 License, or (at your option) any later version. See the file
Chris@60 13 COPYING included with this distribution for more information.
Chris@60 14 */
Chris@60 15
Chris@60 16 #ifndef _REAL_TIME_PLUGIN_TRANSFORM_H_
Chris@60 17 #define _REAL_TIME_PLUGIN_TRANSFORM_H_
Chris@60 18
Chris@60 19 #include "Transform.h"
Chris@60 20 #include "RealTimePluginInstance.h"
Chris@60 21
Chris@60 22 class DenseTimeValueModel;
Chris@60 23
Chris@60 24 class RealTimePluginTransform : public Transform
Chris@60 25 {
Chris@60 26 public:
Chris@60 27 RealTimePluginTransform(Model *inputModel,
Chris@60 28 QString plugin,
Chris@60 29 QString configurationXml = "",
Chris@60 30 int output = 0);
Chris@60 31 virtual ~RealTimePluginTransform();
Chris@60 32
Chris@60 33 protected:
Chris@60 34 virtual void run();
Chris@60 35
Chris@60 36 RealTimePluginInstance *m_plugin;
Chris@60 37 int m_outputNo;
Chris@60 38
Chris@60 39 // just casts
Chris@60 40 DenseTimeValueModel *getInput();
Chris@60 41 };
Chris@60 42
Chris@60 43 #endif
Chris@60 44