JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::dsp::ProcessSpec Struct Reference

This structure is passed into a DSP algorithm's prepare() method, and contains information about various aspects of the context in which it can expect to be called. More...

#include <juce_ProcessContext.h>

Collaboration diagram for juce::dsp::ProcessSpec:

Public Attributes

uint32 maximumBlockSize
 The maximum number of samples that will be in the blocks sent to process() method. More...
 
uint32 numChannels
 The number of channels that the process() method will be expected to handle. More...
 
double sampleRate
 The sample rate that will be used for the data that is sent to the processor. More...
 

Detailed Description

This structure is passed into a DSP algorithm's prepare() method, and contains information about various aspects of the context in which it can expect to be called.

@tags{DSP}

Member Data Documentation

◆ maximumBlockSize

uint32 juce::dsp::ProcessSpec::maximumBlockSize

The maximum number of samples that will be in the blocks sent to process() method.

◆ numChannels

uint32 juce::dsp::ProcessSpec::numChannels

The number of channels that the process() method will be expected to handle.

Referenced by juce::dsp::ProcessorDuplicator< MonoProcessorType, StateType >::prepare().

◆ sampleRate

double juce::dsp::ProcessSpec::sampleRate

The sample rate that will be used for the data that is sent to the processor.

Referenced by juce::dsp::Reverb::prepare().


The documentation for this struct was generated from the following file: