diff options
author | Graham Northup <grissess@nexusg.org> | 2018-09-11 01:54:08 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2018-09-11 01:54:08 -0400 |
commit | f93733a7908088b347d4d225e56892458f4e97f5 (patch) | |
tree | 811553fdbf7d7e9b3fe94e7ba635d5f36d59a61f /packet.py | |
parent | 8278cef5464837744703914e453406f987bdbd8e (diff) |
vibrato, chorus, and parent events
Diffstat (limited to 'packet.py')
-rw-r--r-- | packet.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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') |