aboutsummaryrefslogtreecommitdiffstats
path: root/source/samplebuffer.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-02-04 21:14:19 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-02-04 21:14:19 -0500
commit3668d168288ef085724f0c48bd7a4123599f2719 (patch)
treef495f33206769b65b6170d3c8e4d0bb7a8451aa7 /source/samplebuffer.hpp
parent87851f4e6c4aebd65e28ef16823ada7b197e2edc (diff)
firmware cleanup, thread optimizing; make buffer size refs consistent
Diffstat (limited to 'source/samplebuffer.hpp')
-rw-r--r--source/samplebuffer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/samplebuffer.hpp b/source/samplebuffer.hpp
index 9aabfdd..334c048 100644
--- a/source/samplebuffer.hpp
+++ b/source/samplebuffer.hpp
@@ -6,7 +6,7 @@
using Sample = uint16_t;
-// gives 8000
+// gives 8000 (8192)
constexpr unsigned int MAX_SAMPLE_BUFFER_BYTESIZE = 16384;
constexpr unsigned int MAX_SAMPLE_BUFFER_SIZE = MAX_SAMPLE_BUFFER_BYTESIZE / sizeof(Sample);