I'm trying not to overload my host with data.
I assume computeOutputData runs once per block?
My function looks like this:
Code: Select all
void computeOutputData() {
outputParameters[0] = tempo;
}Code: Select all
void computeOutputData() {
if(tempo != lastTempo) {
outputParameters[0] = tempo;
}
}