mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-14 04:19:59 +02:00
Change wording
This commit is contained in:
@@ -64,7 +64,7 @@ template <typename Thread>
|
||||
class MutualRecursionHelper {
|
||||
public:
|
||||
/**
|
||||
* Run `fn` from a new thread, while handling calls to `handle()` and
|
||||
* Run `fn` from a new thread, during calls to `handle()` and
|
||||
* `maybe_handle()` on this thread. See the docstring on
|
||||
* `MutualRecursionHelper` for more information on this mechanism.
|
||||
*
|
||||
|
||||
@@ -110,7 +110,7 @@ class YaMessagePtr : public Steinberg::Vst::IMessage {
|
||||
* Instead, we'll send a thin wrapper that only stores a name and a pointer to
|
||||
* the actual object. This is needed in case the plugin tries to store the
|
||||
* `IMessage` object, thinking it's backed by a smart pointer. This means that
|
||||
* the message we pass while handling `IConnectionPoint::notify` should live as
|
||||
* the message we pass during `IConnectionPoint::notify` should live as
|
||||
* long as the original message object, thus we'll use a pointer to get back the
|
||||
* original message object.
|
||||
*
|
||||
|
||||
@@ -127,7 +127,7 @@ Steinberg::Vst::ProcessData& YaProcessData::reconstruct(
|
||||
|
||||
// The actual audio data is contained within a shared memory object, and the
|
||||
// input and output pointers point to regions in that object. These pointers
|
||||
// are calculated while handling `IAudioProcessor::setActive()`.
|
||||
// are calculated during `IAudioProcessor::setActive()`.
|
||||
// NOTE: The 32-bit and 64-bit audio pointers are a union, and since this is
|
||||
// a raw memory buffer we can set either `channelBuffers32` or
|
||||
// `channelBuffers64` to point at that buffer as long as we do the
|
||||
|
||||
Reference in New Issue
Block a user