MidiBuffer in processBlock()

Hey Jules,
In processBlock() of AudioProcessor, what do you mean by:
" Any messages left in the midi buffer when this method has finished are assumed to
be the filter’s midi output. This means that your filter should be careful to
clear any incoming messages from the array if it doesn’t want them to be passed-on.
"
Does that mean that the midiBuffer will be passed on to the next plugin’s processBlock() function in the line?

Thanks
Silvere

Those events go to the host. It can send it to the next plugin in the chain, but it might not.

thanks! it kind of makes sense!