...
Code Block |
---|
typedef struct _ModuleGraphicEQBandFract32 { ModuleInstanceDescriptor instance; // Common Audio Weaver module instance structure FLOAT32 gain; // Gain in the center of the band, in dB FLOAT32 lowerEdge; // Lower frequency edge of the band, in Hz FLOAT32 upperEdge; // Upper frequency edge of the band, in Hz INT32 numStages; // Number of 2nd order stages in the filter awe_modBiquadCascadeFract32Instance *filt; // Cascade of second order Biquad filters } ModuleGraphicEQBandFract32Class; |
Variables
Properties
Name | Type | Usage | isHidden | Default value | Range | Units |
gain | float | parameter | 0 | 0 | -12:12 | dB |
lowerEdge | float | parameter | 0 | 100 | 10:20000 | Hz |
upperEdge | float | parameter | 0 | 500 | 10:20000 | Hz |
numStages | int | const | 0 | 4 | Unrestricted |
...