Hello
I have created a VST plugin using JUCE (very easy to setup with the new introJucer, by the way) and the plugin has 0 audio inputs and 0 audio outputs and its only output is a MIDI out.
It compiles and loads perfectly in my test host (Plogue Bidule)
but when i try to run it in DEBUG mode in Visual Studio 2013 , i had to comment the following line :
AudioSampleBuffer::AudioSampleBuffer (float* const* dataToReferTo, const int numChans, const int numSamples) noexcept : numChannels (numChans), size (numSamples), allocatedBytes (0) { //jassert (numChans > 0); allocateChannels (dataToReferTo, 0); }
I think this jassert is relevant in the general case where audio is processed, but in my case it's not worth it.