aboutsummaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2019-12-18 13:05:13 -0500
committerGraham Northup <grissess@nexusg.org>2019-12-18 13:05:13 -0500
commit2cbf8041bc26ca1e846772239015af4bea104754 (patch)
tree033107db590551404e71489551bc07afde7a1588 /client.py
parent8504e47390723cc05b2171f87976bd8fae89dd64 (diff)
Adding OpenGL render support (major speedup)
Diffstat (limited to 'client.py')
-rw-r--r--client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.py b/client.py
index 8deb4b0..63df931 100644
--- a/client.py
+++ b/client.py
@@ -253,9 +253,9 @@ def mapped():
yield b
while True:
mapping[:fixfmtsz] = struct.pack(fixfmt, (DRIFT_FACTOR - 1.0) if QUEUED_PCM else 0.0)
+ del LAST_SAMPLES[:-ms]
mapping[fixfmtsz:fixfmtsz+sigfmtsz] = struct.pack(sigfmt, *(float(LAST_SAMPLES[i])/MAX if i < len(LAST_SAMPLES) else 0.0 for i in xrange(ms)))
mapping[fixfmtsz+sigfmtsz:] = struct.pack(strfmt, *unzip2((FREQS[i], float(AMPS[i])/MAX) for i in xrange(STREAMS)))
- del LAST_SAMPLES[:]
time.sleep(stm)
# Generator functions--should be cyclic within [0, 2*math.pi) and return [-1, 1]