aboutsummaryrefslogtreecommitdiff
path: root/packet.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2018-09-11 01:54:08 -0400
committerGraham Northup <grissess@nexusg.org>2018-09-11 01:54:08 -0400
commitf93733a7908088b347d4d225e56892458f4e97f5 (patch)
tree811553fdbf7d7e9b3fe94e7ba635d5f36d59a61f /packet.py
parent8278cef5464837744703914e453406f987bdbd8e (diff)
vibrato, chorus, and parent events
Diffstat (limited to 'packet.py')
-rw-r--r--packet.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet.py b/packet.py
index 5819a73..9865802 100644
--- a/packet.py
+++ b/packet.py
@@ -22,11 +22,14 @@ class CMD:
KA = 0 # No important data
PING = 1 # Data are echoed exactly
QUIT = 2 # No important data
- PLAY = 3 # seconds, microseconds, frequency (Hz), amplitude (0.0 - 1.0), port
+ PLAY = 3 # seconds, microseconds, frequency (Hz), amplitude (0.0 - 1.0), port, flags
CAPS = 4 # ports, client type (1), user ident (2-7)
PCM = 5 # 16 samples, encoded S16_LE
PCMSYN = 6 # number of samples which should be buffered right now
+class PLF:
+ SAMEPHASE = 0x1
+
def itos(i):
return struct.pack('>L', i).rstrip('\0')