Skip to content

Commit

Permalink
OKAY CLAP IS FINISHED GUYS
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed Nov 6, 2024
1 parent 77b3fef commit b6d88a7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions clap/dplug/clap/client.d
Original file line number Diff line number Diff line change
Expand Up @@ -446,17 +446,19 @@ private:
}

// 2. Process count frames
bool doNotSplit = true;
_client.processAudioFromHost(_inputPtrs[0..numInputs],
_outputPtrs[0..numOutputs],
frames,
_timeInfo);
_timeInfo,
doNotSplit);
for (int n = 0; n < numInputs; ++n)
_inputPtrs[n] += count;
for (int n = 0; n < numOutputs; ++n)
_outputPtrs[n] += count;
start += count;
_timeInfo.timeInSamples += count;
}
}
assert(remain == 0);
}
else
Expand Down

0 comments on commit b6d88a7

Please sign in to comment.