summaryrefslogtreecommitdiff
path: root/muse2/muse/osc.h
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2011-04-25 20:47:28 +0000
committerTim E. Real <termtech@rogers.com>2011-04-25 20:47:28 +0000
commit499ccec21dd2ac636fb019c98a902c351b4ec165 (patch)
tree03b867772f9d4543c2ae0e8ca49f389333ea5ad7 /muse2/muse/osc.h
parent5974951aeaf0a86b83175e018d5bf35e509f5181 (diff)
Overhaul plugin module and add variable run-length ladspa + dssi processing. Please see ChangeLog.
Diffstat (limited to 'muse2/muse/osc.h')
-rw-r--r--muse2/muse/osc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/muse2/muse/osc.h b/muse2/muse/osc.h
index ea94451b..02c30de4 100644
--- a/muse2/muse/osc.h
+++ b/muse2/muse/osc.h
@@ -34,6 +34,7 @@ class QString;
class PluginI;
class OscIF;
+/*
// Keep the OSC fifo small. There may be thousands of controls, and each control needs a fifo.
// Oops, no, if the user keeps adjusting a slider without releasing the mouse button, then all of the
// events are sent at once upon releasing the button, meaning there might be thousands of events at once.
@@ -73,6 +74,7 @@ class OscControlFifo
void clear() { size = 0, wIndex = 0, rIndex = 0; }
int getSize() const { return size; }
};
+*/
//---------------------------------------------------------
// OscIF
@@ -137,7 +139,7 @@ class OscIF
char* _uiOscShowPath;
bool _oscGuiVisible;
- OscControlFifo* _oscControlFifos;
+ //OscControlFifo* _oscControlFifos;
virtual bool oscInitGui(const QString& /*typ*/, const QString& /*baseName*/, const QString& /*name*/,
const QString& /*label*/, const QString& /*filePath*/, const QString& /*guiPath*/);
@@ -146,7 +148,7 @@ class OscIF
OscIF();
virtual ~OscIF();
- OscControlFifo* oscFifo(unsigned long) const;
+ //OscControlFifo* oscFifo(unsigned long) const;
virtual int oscUpdate(lo_arg**);
virtual int oscProgram(lo_arg**) { return 0; }