ASPiK SDK
Loading...
Searching...
No Matches
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 1234]
 Nmoodycamel
 NSteinberg
 NVSTGUI
 CAAX_CVSTGUIButtonState
 CAAXAlgorithmProcessing structure; this is described in detail in Designing Audio Effects in C++ 2nd Ed. by Will Pirkle and is part of the monolithic parameters AAX programming paradigm; this is very well documented in the AAX SDK documentation
 CAAXMIDIEventQueueThe AAXMIDIEventQueue interface queues incoming MIDI messages and blasts them out during the buffer processing phase
 CAAXPluginGUIThe AAXPluginGUI is the GUI object for AAX. It creates and destroys the ASPiK GUI. It also synchronizes GUI and parameters as described in detail in the book source below
 CAAXPluginParametersThe AAXPluginParameters object implements the monolithic parameters AAX plugin programming paradigm which is documented in detail in Designing Audio Effects in C++ 2nd Ed. by Will Pirkle as well as the AAX SDK
 CAnalogFIRFilterThe AnalogFIRFilter object implements a somewhat silly algorithm that implaments an analog magnitude response as a FIR filter. NOT DESIGNED to replace virtual analog; rather it is intended to show the frequency sampling method in an easy (and fun) way
 CAnalogFIRFilterParametersCustom parameter structure for the AnalogFIRFilter object. This is a somewhat silly object that implaments an analog magnitude response as a FIR filter. NOT DESIGNED to replace virtual analog; rather it is intended to show the frequency sampling method in an easy (and fun) way
 CAnalogMagDataCustom parameter structure calculating analog magnitude response arrays with calculateAnalogMagArray( )
 CAntiLogTaperDelegateThe AntiLogTaperDelegate object encapsulates an anti-log parameter. Note that the standard log potentiometer in electronics is actually anti-log! This is used in the construction of AAX parameters
 CAPISpecificInfoIdentifiers, GUIDs and other strings and number id values, API specific
 CattributeValueAttribute value smashed down into a union
 CAU_COCOA_VIEWFACTORY_NAMEThe cocoa NSView factory (name is unique and defined in plugindefinition.h)
 CAudioDelayThe AudioDelay object implements a stereo audio delay with multiple delay algorithms
 CAudioDelayParametersCustom parameter structure for the AudioDelay object
 CAudioDetectorThe AudioDetector object implements the audio detector defined in the book source below. NOTE: this detector can receive signals and transmit detection values that are both > 0dBFS
 CAudioDetectorParametersCustom parameter structure for the AudioDetector object. NOTE: this object uses constant defintions:
 CAudioFilterThe AudioFilter object implements all filters in Designing Audio Effects Plugins in C++ 2nd Ed. by Will Pirkle
 CAudioFilterParametersCustom parameter structure for the AudioFilter object
 CAudioProcDescriptorInformation package about the current DAW session. Sample rate and bit-depth of audio
 CAudioUnitNSViewThe cocoa NSView class for this plugin
 CAUFXPluginThe AUFXPlugin is the ASPiK plugin shell for Audio Units plugin. It contains the plugin kernel and all necessary intefaces, implemented as separate C++ obejcts
 CAUGUIWindowFrameThe ASPiK IGUIWindowFrame object for AU plugin shell
 CAUMIDIEventQueueThe AUMIDIEventQueue interface queues incoming MIDI messages and blasts them out during the buffer processing phase
 CAUSynthPluginThe AUSynthPlugin is the ASPiK plugin shell for Audio Units synth plugins. It contains the plugin kernel and all necessary intefaces, implemented as separate C++ obejcts
 CAuxParameterAttributeInformation about auxilliary parameter details - purely customizeable. This uses the attributeValue union to set the attribute in multiple fashions without resorting to declaring multiple datatypes
 CBinDataCustom structure that holds information about each FFT bin. This includes all information needed to perform pitch shifting and time stretching with phase locking (optional) and peak tracking (optional)
 CBiquadThe Biquad object implements a first or second order H(z) transfer function using one of four standard structures: Direct, Canonical, Transpose Direct, Transpose Canonical
 CBiquadParametersCustom parameter structure for the Biquad object. Default version defines the biquad structure used in the calculation
 CBitCrusherThe BitCrusher object implements a quantizing bitcrusher algorithm
 CBitCrusherParametersCustom parameter structure for the BitCrusher object
 CBrickwallMagDataCustom structure that holds magnitude information about a brickwall filter
 CChannelIOConfigStructure of a pair of channel format enumerators that set an input/output channel I/O capability
 CCircularBufferThe CircularBuffer object implements a simple circular buffer. It uses a wrap mask to wrap the read or write index quickly
 CClassATubePreThe ClassATubePre object implements a simple cascade of four (4) triode tube models
 CClassATubePreParametersCustom parameter structure for the ClassATubePre object
 CCombFilterThe CombFilter object implements a comb filter with optional LPF in feedback loop. Used for reverb algorithms in book
 CCombFilterParametersCustom parameter structure for the CombFilter object. Used for reverb algorithms in book
 CComplexNumberStructure to hold a complex value
 CCreateGUIInfoStructure that is used during GUI creation to safely pass information about the GUI size and interfaces
 CCustomViewControllerThe CustomViewController is part of the safe ICustomView feature in ASPiK. The CustomViewController maintains an ICustomView pointer. When the GUI registers and de-registers custom views during creation or destuction, the plugin shell is responsible for making sure that the original ICustomView pointer registered with the plugin core object never goes out of scope and this object is part of that system
 CDecimatorThe Decimator object implements a sample rate decimator. Ana array of M input samples is decimated to one output sample
 CDecimatorInputCustom input structure for DecimatorInput; it holds an arry of input samples that will be decimated down to just one sample
 CDelayAPFThe DelayAPF object implements a delaying APF with optional LPF and optional modulated delay time with LFO
 CDelayAPFParametersCustom parameter structure for the DelayAPF object. Used for reverb algorithms in book
 CDFOscillatorThe DFOscillator object implements generates a very pure sinusoidal oscillator by placing poles direclty on the unit circle. Accuracy is excellent even at low frequencies
 CDynamicsProcessorThe DynamicsProcessor object implements a dynamics processor suite: compressor, limiter, downward expander, gate
 CDynamicsProcessorParametersCustom parameter structure for the DynamicsProcessor object. Ths struct includes all information needed from GUI controls
 CEnvelopeFollowerThe EnvelopeFollower object implements a traditional envelope follower effect modulating a LPR fc value using the strength of the detected input
 CEnvelopeFollowerParametersCustom parameter structure for the EnvelopeFollower object
 CFastConvolverThe FastConvolver provides a fast convolver - the user supplies the filter IR and the object snapshots the FFT of that filter IR. Input audio is fast-convovled with the filter FFT using complex multiplication and zero-padding
 CFastFFTThe FastFFT provides a simple wrapper for the FFTW FFT operation - it is ultra-thin and simple to use
 Cfftw_iodim64_do_not_use_me
 Cfftw_iodim_do_not_use_me
 CFilterBankOutputCustom output structure for filter bank objects that split the inptu into multiple frequency channels (bands)
 CGUIParameterInformation that defines a single GUI parameter's possible values and ID
 CGUIPluginConnectorThe GUIPluginConnector interface creates a safe message mechanism for the GUI to issue requests to the plugin shell. The following messages are processed via functions:
 CGUIUpdateDataInformation about a GUI update message; this is for sending GUI control information from the plugin core. It is not the optimal way to intelligently link or combine controls - use a sub-controller for that. This can be abused too, and create dangerous code. Make sure to see the example code before using this
 CHostInfoInformation from the host that is updated on each buffer process cycle; includes BPM, time signature, SMPTE and other data. The values in the stock structure are consistent across most APIs, however others may be added (commnted out here)
 CHostMessageInfo
 CIAudioSignalGeneratorUse this interface for objects that render an output without an input, such as oscillators. May also be used for envelope generators whose input is a note-on or other switchable event
 CIAudioSignalProcessorUse this interface for objects that process audio input samples to produce audio output samples. A derived class must implement the three abstract methods. The others are optional
 CIComponentAdaptorUse this interface for objects in the WDF Ladder Filter library; see book for more information
 CICustomViewCustom View interface to allow plugin core to create safe communication channels with GUI custom view objects. MANY uses!
 CIGUIPluginConnectorCustom interface so that GUI can pass information to plugin shell in a thread-safe manner
 CIGUIViewCustom interface to allow resizing of GUI window; this is mainly used for the GUI designer
 CIGUIWindowFrameCustom interface to allow resizing of GUI window; this is mainly used for the GUI designer
 CIMidiEventQueueDouble buffered queue for MIDI messages
 CImpulseConvolverThe ImpulseConvolver object implements a linear conovlver. NOTE: compile in Release mode or you may experice stuttering, glitching or other sample-drop activity
 CInterpolatorThe Interpolator object implements a sample rate interpolator. One input sample yields N output samples
 CInterpolatorOutputCustom output structure for interpolator; it holds an arry of interpolated output samples
 CIParameterUpdateQueueInterface for VST3 parameter value update queue (sample accurate automation)
 CIPluginHostConnectorCustom interface to send the plugin shell a message from plugin core
 CJSControlInformation package a joystick or trackpad GUI interaction
 CLFOThe LFO object implements a mathematically perfect LFO generator for modulation uses only. It should not be used for audio frequencies except for the sinusoidal output which, though an approximation, has very low TDH
 CLinearBufferThe LinearBuffer object implements a linear buffer of type T. It allows easy wrapping of a smart pointer object
 CLogTaperDelegateThe LogTaperDelegate object encapsulates a log parameter. Note that the standard log potentiometer in electronics is actually anti-log! This is used in the construction of AAX parameters
 CLRFilterBankThe LRFilterBank object implements 2 Linkwitz-Riley Filters in a parallel filter bank to split the signal into two frequency bands. Note that one channel is inverted (see the FX book below for explanation). You can add more bands here as well
 CLRFilterBankParametersCustom parameter structure for the LRFilterBank object which splits the input signal into multiple bands. The stock obejct splits into low and high frequency bands so this structure only requires one split point - add more split frequencies to support more bands
 CMessageInfoInformation that includes the message code as well as the message data
 CmidiEventInformation about a MIDI event
 CModulatedDelayThe ModulatedDelay object implements the three basic algorithms: flanger, chorus, vibrato
 CModulatedDelayParametersCustom parameter structure for the ModulatedDelay object
 CNestedDelayAPFThe NestedDelayAPF object implements a pair of nested Delaying APF structures. These are labled the outer and inner APFs. The outer APF's LPF and LFO may be optionally enabled. You might want to extend this object to enable and use the inner LPF and LFO as well
 CNestedDelayAPFParametersCustom parameter structure for the NestedDelayAPF object. Used for reverb algorithms in book
 COscillatorParametersCustom parameter structure for the LFO and DFOscillator objects
 CParameterUpdateInfoInformation about a paraemeter being updated. Used when bound variables are updated. Multiple advanced uses
 CParamSmootherThe ParamSmoother object performs parameter smoothing on GUI control information. You can choose linear or exponential smoothing
 CPeakLimiterThe PeakLimiter object implements a simple peak limiter; it is really a simplified and hard-wired versio of the DynamicsProcessor
 CPhaseShifterThe PhaseShifter object implements a six-stage phaser
 CPhaseShifterParametersCustom parameter structure for the PhaseShifter object
 CPhaseVocoderThe PhaseVocoder provides a basic phase vocoder that is initialized to N = 4096 and 75% overlap; the de-facto standard for PSM algorithms. The analysis and sythesis hop sizes are identical
 CPluginBaseThe PluginBase object is the base class for the Plugin Core object
 CPluginCoreThe PluginCore object is the default PluginBase derived object for ASPiK projects. Note that you are fre to change the name of this object (as long as you change it in the compiler settings, etc...)
 CpluginCustomDataStructure of data that is passed to GUI object once at creation time
 CPluginDescriptorInformation package about the plugin itself, consisting mainly of simple strings and ID values
 CPluginHostConnectorThe PluginHostConnector implements the IPluginHostConnector interface for the plugin shell object. For AAX, this requires implementing only one method, sendHostMessage( ). Only one message is processed for sendGUIUpdate that provides a mechanism to update the GUI controls from the plugin core. Note that this is not an ideal solution for most problems (e.g. linking controls together intelligently) – you should always consider using a custom sub-controller and/or custom view to do this properly. On occasion, a more difficult scenario may arise (e.g. MIDI learn button, that must wait for user input from a MIDI instrument to toggle states) where the sendGUIUpdate method may be appropriate. See the example in the ASPiK SDK for more information
 CPluginInfoStructure that is used during the base class initilize( ) funciton call, after object instantiation is complete. This structure contains the path to the DLL itself which can be used to open/save files including pre-installed WAV files for sample based synths
 CPluginParameterThe PluginParameter object stores all of the data needed for any type of plugin parameter. It is a large object, but it is not complex as it really just stores LOTS of information about plugin parameters
 CpluginPrivateDataBack-pointer to the parameters; this is described in detail in Designing Audio Effects in C++ 2nd Ed. by Will Pirkle and is part of the monolithic parameters AAX programming paradigm; this is very well documented in the AAX SDK documentation
 CPresetInfo
 CPresetParameterInformation that defines a preset value as a control_ID::value data pair
 CProcessBlockInfoStructure for setting up block processing
 CProcessBufferInfoInformation package that arrives with each new audio buffer process cycle. Contains everything needed for one buffer's worth of data
 CProcessFrameInfoInformation package that arrives with each new audio frame; called internally from the buffer process function
 CPSMVocoderThe PSMVocoder object implements a phase vocoder pitch shifter. Phase locking and peak tracking are optional
 CPSMVocoderParametersCustom parameter structure for the Biquad object. Default version defines the biquad structure used in the calculation
 CResetInfoSample rate and bit-depth information that is passed during the reset( ) function
 CReverbTankThe ReverbTank object implements the cyclic reverb tank in the FX book listed below
 CReverbTankParametersCustom parameter structure for the ReverbTank object
 CSignalGenDataThis is the output structure for audio generator objects that can render up to four outputs
 CSimpleDelayThe SimpleDelay object implements a basic delay line without feedback
 CSimpleDelayParametersCustom parameter structure for the SimpleDelay object. Used for reverb algorithms in book
 CSimpleLPFThe SimpleLPF object implements a first order one-pole LPF using one coefficient "g" value
 CSimpleLPFParametersCustom parameter structure for the SimpleLPFP object. Used for reverb algorithms in book
 CTransitionBandDataCustom structure that holds transition band information for FIR filter calculations
 CTriodeClassAThe TriodeClassA object simulates a triode in class A configuration. This is a very simple and basic simulation and a starting point for other designs; it is not intended to be a full-fledged triode simulator
 CTriodeClassAParametersCustom parameter structure for the TriodeClassA object
 CTwoBandShelvingFilterThe TwoBandShelvingFilter object implements two shelving filters in series in the standard "Bass and Treble" configuration
 CTwoBandShelvingFilterParametersCustom parameter structure for the TwoBandShelvingFilter object. Used for reverb algorithms in book
 CVectorJoystickDataIncoming data from a vector joystick
 CVoltOctaveTaperDelegate
 CWdfAdaptorBaseThe WdfAdaptorBase object acts as the base class for all WDF Adaptors; the static members allow for simplified connection of components. See the FX book for more details
 CWDFBesselBSF3The WDFBesselBSF3 object implements a 3rd order Bessel BSF NOTE: designed with Elsie www.TonneSoftware.comm
 CWDFButterLPF3The WDFButterLPF3 object implements a 3rd order Butterworth ladder filter. NOTE: designed with Elsie www.TonneSoftware.comm
 CWdfCapacitorThe WdfCapacitor object implements the reflection coefficient and signal flow through a WDF simulated capacitor
 CWdfComponentInfoCustom structure to hold component information
 CWDFConstKBPF6The WDFConstKBPF6 object implements a 6th order constant K BPF NOTE: designed with Elsie www.TonneSoftware.comm
 CWDFIdealRLCBPFThe WDFIdealRLCBPF object implements an ideal RLC BPF using the WDF library
 CWDFIdealRLCBSFThe WDFIdealRLCBSF object implements an ideal RLC BSF using the WDF library
 CWDFIdealRLCHPFThe WDFIdealRLCHPF object implements an ideal RLC HPF using the WDF library
 CWDFIdealRLCLPFThe WDFIdealRLCLPF object implements an ideal RLC LPF using the WDF library
 CWdfInductorThe WdfInductor object implements the reflection coefficient and signal flow through a WDF simulated inductor
 CWdfParallelAdaptorThe WdfParallelAdaptor object implements the parallel reflection-free (non-terminated) adaptor
 CWdfParallelLCThe WdfParallelLC object implements the reflection coefficient and signal flow through a WDF simulated parallel LC pair
 CWdfParallelRCThe WdfParallelRC object implements the reflection coefficient and signal flow through a WDF simulated parallal RC pair
 CWdfParallelRLThe WdfParallelRL object implements the reflection coefficient and signal flow through a WDF simulated parallel RL pair
 CWdfParallelTerminatedAdaptorThe WdfParallelTerminatedAdaptor object implements the parallel terminated (non-reflection-free) adaptor
 CWDFParametersCustom parameter structure for the WDF filter examples
 CWdfResistorThe WdfResistor object implements the reflection coefficient and signal flow through a WDF simulated resistor
 CWdfSeriesAdaptorThe WdfSeriesAdaptor object implements the series reflection-free (non-terminated) adaptor
 CWdfSeriesLCThe WdfSeriesLC object implements the reflection coefficient and signal flow through a WDF simulated series LC pair
 CWdfSeriesRCThe WdfSeriesRC object implements the reflection coefficient and signal flow through a WDF simulated series RC pair
 CWdfSeriesRLThe WdfSeriesRL object implements the reflection coefficient and signal flow through a WDF simulated series RL pair
 CWdfSeriesTerminatedAdaptorThe WdfSeriesTerminatedAdaptor object implements the series terminated (non-reflection-free) adaptor
 CWDFTunableButterLPF3The WDFTunableButterLPF3 object implements a tunable 3rd order Butterworth ladder filter. NOTE: designed with Elsie www.TonneSoftware.comm
 CZVAFilterThe ZVAFilter object implements multpile Zavalishin VA Filters. Audio I/O:
 CZVAFilterParametersCustom parameter structure for the ZVAFilter object