Skip to content

Commit

Permalink
Set MAX_BUFFER_LEN to a more reasonable size
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed Sep 16, 2023
1 parent 499a4d5 commit 638c747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Maximum buffer length to each EngineObject::process call.
//TODO: Replace this with mixxx::AudioParameters::bufferSize()
constexpr unsigned int MAX_BUFFER_LEN = 160000;
constexpr unsigned int MAX_BUFFER_LEN = 32 * 1024;

constexpr int kMaxNumberOfDecks = 4;

Expand Down

0 comments on commit 638c747

Please sign in to comment.