Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VBAP with more than 55 channels #374

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/VBAPUGens/VBAP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ using nova::wrap_argument;
#endif

#define RES_ID 9171 /* resource ID for assistance (we'll add that later) */
#define MAX_LS_SETS 100 /* maximum number of loudspeaker sets (triplets or pairs) allowed */
#define MAX_LS_AMOUNT 55 /* maximum amount of loudspeakers, can be increased */
#define MAX_LS_SETS 256 /* maximum number of loudspeaker sets (triplets or pairs) allowed */
#define MAX_LS_AMOUNT 128 /* maximum amount of loudspeakers, can be increased */

static InterfaceTable *ft;

Expand Down
2 changes: 1 addition & 1 deletion source/VBAPUGens/sc/vbap.sc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use or for distribution:


VBAPSpeakerArray {
classvar <>maxNumSpeakers = 55, minSideLength = 0.01;
classvar <>maxNumSpeakers = 128, minSideLength = 0.01;
var <dim, <speakers, <numSpeakers, sets;

*new { |dim, directions|
Expand Down