summaryrefslogtreecommitdiffstats
path: root/src/common/interface
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-23 05:01:08 +0000
committerDavid Robillard <d@drobilla.net>2008-01-23 05:01:08 +0000
commitb77bc1e6e272a227794013ce05bf07760c1fb845 (patch)
tree669473ddf0affea17e5177393956c0d56a1d5328 /src/common/interface
parent7b19bdc06b244844653eec56ec4f4589d71698b7 (diff)
downloadingen-b77bc1e6e272a227794013ce05bf07760c1fb845.tar.gz
ingen-b77bc1e6e272a227794013ce05bf07760c1fb845.tar.bz2
ingen-b77bc1e6e272a227794013ce05bf07760c1fb845.zip
Working Jack MIDI -> generic event port input.
git-svn-id: http://svn.drobilla.net/lad/ingen@1098 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface')
-rw-r--r--src/common/interface/DataType.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/interface/DataType.hpp b/src/common/interface/DataType.hpp
index 7ce76be1..d6fe7440 100644
--- a/src/common/interface/DataType.hpp
+++ b/src/common/interface/DataType.hpp
@@ -27,6 +27,8 @@ namespace Shared {
* This type refers to the type of the entire buffer, mirroring LV2,
* e.g. :AudioPort and :ControlPort both are really 32-bit floating point,
* but they are different port types.
+ *
+ * FIXME: Event/MIDI/OSC kludges.
*/
class DataType {
public:
@@ -45,7 +47,8 @@ public:
_symbol = AUDIO;
} else if (uri == type_uri(CONTROL)) {
_symbol = CONTROL;
- } else if (uri == type_uri(EVENT)) {
+ } else if (uri == type_uri(EVENT)
+ || (uri == "ingen:MIDIPort") || uri == "ingen:OSCPort") {
_symbol = EVENT;
}
}
@@ -72,6 +75,8 @@ private:
case 1: return "ingen:AudioPort";
case 2: return "ingen:ControlPort";
case 3: return "ingen:EventPort";
+ case 4: return "ingen:EventPort"; // MIDI
+ case 5: return "ingen:EventPort"; // OSC
default: return "";
}
}