aboutsummaryrefslogtreecommitdiffstats
path: root/source/samplebuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/samplebuffer.hpp')
-rw-r--r--source/samplebuffer.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/samplebuffer.hpp b/source/samplebuffer.hpp
index bed52bf..6d17d2a 100644
--- a/source/samplebuffer.hpp
+++ b/source/samplebuffer.hpp
@@ -6,8 +6,7 @@
using Sample = uint16_t;
-// Gives 8000 (8192) samples total (algorithm works with max 4096).
-constexpr unsigned int MAX_SAMPLE_BUFFER_BYTESIZE = 16384;
+constexpr unsigned int MAX_SAMPLE_BUFFER_BYTESIZE = sizeof(Sample) * 8192;
constexpr unsigned int MAX_SAMPLE_BUFFER_SIZE = MAX_SAMPLE_BUFFER_BYTESIZE / sizeof(Sample);
class SampleBuffer