annotate transform/RealTimePluginTransform.h @ 63:ba405e5e69d3

* Add auto-normalize option to waveform layer * Various fixes to display of dB/metered levels in waveform layer. Still need to fix to ensure they don't waste half the display * Add mix channels option to waveform layer * Use multiple transforms menus, one per transform type -- not sure about this * Give centroid plugin two outputs, for log and linear frequency weightings * Show scale units from plugin in time-value display
author Chris Cannam
date Wed, 29 Mar 2006 12:35:17 +0000
parents 3086ff194ea0
children 4d59dc469b0f
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@63 30 QString units = "",
Chris@60 31 int output = 0);
Chris@60 32 virtual ~RealTimePluginTransform();
Chris@60 33
Chris@60 34 protected:
Chris@60 35 virtual void run();
Chris@60 36
Chris@60 37 RealTimePluginInstance *m_plugin;
Chris@60 38 int m_outputNo;
Chris@60 39
Chris@60 40 // just casts
Chris@60 41 DenseTimeValueModel *getInput();
Chris@60 42 };
Chris@60 43
Chris@60 44 #endif
Chris@60 45