aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2022-03-07 15:01:22 -0500
committerGitHub <noreply@github.com>2022-03-07 15:01:22 -0500
commitfdca5ccd30ebddd68a7b20b683d37dec1585d230 (patch)
tree63478da79ba42a1ccd298baa4788e13626a053c0
parentebd8f4b242c1a83a222297aa80b2e5c64580e36d (diff)
parentc446d6977b6b696b19aa4bba912634a621fa5479 (diff)
Merge pull request #1 from thajohns/betabeta
added documentation for mapped file structure
-rw-r--r--render.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/render.py b/render.py
index 0030969..aa0b75a 100644
--- a/render.py
+++ b/render.py
@@ -1,5 +1,15 @@
# A visualizer for the Python client (or any other client) rendering to a mapped file
+# The map file format should look like the following C structure:
+# struct mapping {
+# float disp_factor; // a factor to be displayed onscreen
+# float last_samples[MAP_SAMPLES]; // samples from the waveform being played
+# struct {
+# unsigned long frequency;
+# float amplitude;
+# } values[STREAMS];
+# }
+
import optparse
import mmap
import os