r10s / BASS_VST

BASS_VST allows the usage of VST plugins in the BASS audio library.
GNU Lesser General Public License v3.0
25 stars 8 forks source link

Channel count #4

Open FischertBilligheim opened 4 years ago

FischertBilligheim commented 4 years ago

If was wondering, why the „Steven Slate Drums“ Plugin does not work with Bass_Vst.

In a debugging session, I found out that the count of channels was the problem: Bass_vst is compiled with 32 channels - This is not sufficiant for the mentioned plugin.

Is there a specific reason for „only“ using 32 Channels? I also did not found any error message (by using bass.net) with a hint to that problem...

Best regards Thomas

r10s commented 4 years ago

it was just chosen because at some point someone thought 32 channels are enough :)

i think, changing MAX_CHANS in bass_vst_impl.h to eg. 128 and recompile should just work. you can also do a pr on this repo.

once could also do the channel thing dynamically, however, that would be some more work.