From 9417b02a99eea8f7b175e789d8f3120248ac6049 Mon Sep 17 00:00:00 2001 From: David Braun Date: Sat, 11 Jun 2022 17:50:01 -0700 Subject: [PATCH] increase max inputs and outputs. --- README.md | 2 +- TD-Faust/FaustCHOP.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 63c1a67..fdeeac4 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/TD-Faust/FaustCHOP.h b/TD-Faust/FaustCHOP.h index 0b67257..778642c 100644 --- a/TD-Faust/FaustCHOP.h +++ b/TD-Faust/FaustCHOP.h @@ -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