aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-08-04 12:34:28 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-08-04 12:34:28 +0000
commitc849aa9965efb5d8f6ac21bf097edc103d505a6f (patch)
treef0393a5bd15d4d9728a122218a02cb4a239bb6c9
parent43d9e13c373ede108afccbe63cfa11978428b9c0 (diff)
added short descriptions
svn path=/trunk/externals/mrpeach/; revision=15202
-rw-r--r--osc/README.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/osc/README.txt b/osc/README.txt
index a03f6a5..92763c9 100644
--- a/osc/README.txt
+++ b/osc/README.txt
@@ -7,3 +7,32 @@ so you will need a separate set of objects that implement the transport
(OSI-Layer 4), for instance [udpsend]/[udpreceive] for sending OSC over UDP.
Author: Martin Peach
+
+objectclasses
+
+- [packOSC]
+ convert a Pd-message to an OSC (binary) message
+ (useful if you want to transmit OSC over UDP or other protocols that
+ have the concept of variable length packets)
+
+- [unpackOSC]
+ convert an OSC (binary) message to a Pd-message
+ (useful if you want to transmit OSC over UDP or other protocols that
+ have the concept of variable length packets)
+
+- [routeOSC]
+ route OSC-like Pd-messages according to the first element in the path
+
+- [pipelist]
+ delay lists
+ (useful if you want to respect timestamps)
+
+- [packOSCstream]
+ convert a Pd-message to an OSC (binary) message suitable for streaming transport
+ (useful if you want to transmit OSC over TCP/IP or a serial line)
+
+- [unpackOSCstream]
+ convert an OSC (binary) message suitable for streaming transport to a Pd-message
+ (useful if you want to transmit OSC over TCP/IP or a serial line)
+
+