Skip to content

Commit

Permalink
increase max inputs and outputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Braun committed Jun 12, 2022
1 parent 14344a1 commit 9417b02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TD-Faust is an integration of [FAUST](https://faust.grame.fr) (Functional Audio
* FAUST code can be compiled "just-in-time" and run inside TouchDesigner.
* Tested on Windows and macOS.
* Automatically generated user interfaces of TouchDesigner widgets based on the FAUST code.
* Up to 256 channels of input and 256 channels of output.
* Up to 16384 channels of input and 16384 channels of output.
* Pick your own sample rate.
* Support for all of the standard [FAUST libraries](https://faustlibraries.grame.fr/) including
* * High-order ambisonics
Expand Down
4 changes: 2 additions & 2 deletions TD-Faust/FaustCHOP.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ which is MIT-Licensed.
#endif

#ifndef MAX_INPUTS
#define MAX_INPUTS 1024
#define MAX_INPUTS 16384
#endif
#ifndef MAX_OUTPUTS
#define MAX_OUTPUTS 1024
#define MAX_OUTPUTS 16384
#endif

// To get more help about these functions, look at CHOP_CPlusPlusBase.h
Expand Down

0 comments on commit 9417b02

Please sign in to comment.