|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Used by the Convolution to dispatch engine-update messages on a background thread. More...
#include "juce_Convolution.h"
Classes | |
| struct | Impl |
Public Member Functions | |
| ConvolutionMessageQueue () | |
| Initialises the queue to a default size. | |
| ConvolutionMessageQueue (int numEntries) | |
| Initialises the queue with the specified number of entries. | |
| ConvolutionMessageQueue (ConvolutionMessageQueue &&) noexcept | |
| ConvolutionMessageQueue & | operator= (ConvolutionMessageQueue &&) noexcept |
| ConvolutionMessageQueue (const ConvolutionMessageQueue &)=delete | |
| ConvolutionMessageQueue & | operator= (const ConvolutionMessageQueue &)=delete |
Friends | |
| class | Convolution |
Used by the Convolution to dispatch engine-update messages on a background thread.
May be shared between multiple Convolution instances.
@tags{DSP}
Definition at line 37 of file juce_Convolution.h.
| juce::dsp::ConvolutionMessageQueue::ConvolutionMessageQueue | ( | ) |
Initialises the queue to a default size.
If your Convolution is updated very frequently, or you are sharing this queue between multiple Convolutions, consider using the alternative constructor taking an explicit size argument.
Definition at line 128 of file juce_Convolution.cpp.
|
noexcept |
Definition at line 138 of file juce_Convolution.cpp.
|
explicit |
Initialises the queue with the specified number of entries.
In general, the number of required entries scales with the number of Convolutions sharing the same Queue, and the frequency of updates to those Convolutions.
Definition at line 132 of file juce_Convolution.cpp.
|
friend |
Definition at line 67 of file juce_Convolution.h.