Ccsl::Abst_FFT_W | Abstract FFT class can do forward/reverse real/complex I/O FFTs |
Ccsl::Accessor | Has public data members |
Ccsl::AmbisonicOrder | Ambisonic order structure (separate definition for horizontal and vertical order): |
►CAudioEffectX | |
Ccsl::VSTIO | VSTIO is an IO that answers the VST processReplacing() call by calling its CSL graph |
►CAudioIODeviceCallback | |
►CAudioWaveformDisplay | |
CAudioSpectrumDisplay | |
Ccsl::JUCEIO | JUCEIO is an IO that runs as a JUCE |
►CCSLAbstComponent | |
CCSLSignalComponent | |
CCSLComponent | |
CCSLMIDIComponent | |
CCSLServerComponent | |
CVUMeter | |
Cmath::matrix::base_mat | |
Ccsl::BinauralSourceCache | BinauralSourceCache: used for caching previous state of spatial sources. This has the history of input FFTs and the last output sample block for OLA |
CFFTReal::BitReversedLUT | |
►Ccsl::Buffer | Buffer – the multi-channel sample buffer class (passed around between generators and IO guys) |
Ccsl::BufferCMap | BufferCMap is a Sample buffer with channel map and count |
►CButtonListener | |
CCSLComponent | |
CCSLMIDIComponent | |
CCSLMIDIComponent | |
CCSLServerComponent | |
►Ccsl::Cacheable | Cacheable – a mix-in for caching streams |
►Ccsl::CompOrCacheOscillator | CompOrCacheOscillator – Abstract oscillator class for those who can compute of cache their wavetables |
►Ccsl::SumOfSines | |
Ccsl::SquareBL | Band-limited square, impulse, and triangle waveform oscillators |
Ccsl::CGestalt | The CSL system defaults class |
Ccsl::CMIDIMessage | CMIDIMessage class (mapped to juce::MidiMessage) |
Ccsl::Comb | Comb filter class |
►CComboBoxListener | |
CCSLComponent | |
►CComponent | |
CAudioWaveformDisplay | |
CCSLAbstComponent | |
CCSLComponent | |
CCSLComponent | |
CCSLMIDIComponent | |
CCSLMIDIComponent | |
CCSLServerComponent | |
CVUMeter | |
CConnection | |
►Ccsl::Controllable | Controllable – superclass of the mix-ins that add control or signal inputs. This holds onto a map of port objects that represent the inputs, and manages the naming and processing flow for dynamic inputs |
►Ccsl::Effect | Effect – mix-in for classes that have unit generators as inputs (like filters) |
►Ccsl::BinaryOp | BinaryOp – An Effect that takes two input sources (UnitGenerators or scalars) and gives a single UnitGenerator as its output. BinaryOp is an abstract class who's nextBuffer method is to be implemented by subclasses |
Ccsl::AddOp | AddOp – A BinaryOp that adds two UnitGenerators or fixed constants together |
Ccsl::MulOp | MulOp – A BinaryOp that multiplies two UnitGenerators or fixed constants together, sample-by-sample |
Ccsl::Clipper | Clipper class |
Ccsl::Convolver | The Convolver is a CSL Effect |
Ccsl::Convolver2 | The Convolver2 is a CSL Effect |
Ccsl::DelayLine | |
Ccsl::DynamicVariable | Changing variable that can perform an operation (e.g., scaling) on another unit generator |
►Ccsl::FanOut | A fan-out generator for DSP graphs with loops |
Ccsl::Splitter | Splitter class – a de-multiplexer for multi-channel signals |
Ccsl::FFT | Forward FFT unit generator is an Effect because it handles an input It puts spectral frames in the output buffer and then broadcasts a change message, so clients are expected to observe it |
►Ccsl::Filter | Filter: the canonical-form n-pole/m-zero filter class |
Ccsl::Allpass | Allpass Filter with a pole and a zero at equal frequency and straddling the unit circle. Allows all freqs to pass through but messes with phases |
Ccsl::Biquad | General-purpose Biquad IIR (2nd order recursive) filter. This is simplified and optimized, but doesn't support dynamic or scalable controls. It uses inst vars rather than arrays for the coefficients. NB: peak gain (dB) is used only for the peak and shelf types) |
Ccsl::Butter | Butterworth IIR (2nd order recursive) filter |
Ccsl::Formant | Formant Filter with zeros at +-z and complex conjugate poles at +-omega. setupCoeffs() looks at the member var called normalize; if normalize is true, the filter zeros are placed at z = 1, z = -1, and the coefficients are then normalized to produce a constant unity peak gain. The resulting filter frequency response has a resonance at the given frequency. The closer the poles are to the unit-circle (radius close to one), the narrower the resulting resonance width |
Ccsl::Moog | Moog-style resonant VCF class |
Ccsl::Notch | Notch Filter with poles at +-z and complex conjugate zeros at +-omega |
Ccsl::FIR | Examples |
Ccsl::Freeverb | CSL port of the public domain Freeverb reverberator |
Ccsl::InOut | InOut class copies the IO port's input buffer to the output buffer, possibly with channel remap and scaling |
Ccsl::Joiner | Joiner class – a multiplexer for multi-channel signals |
►Ccsl::Panner | The CSL mono-to-stereo L/R panner class |
Ccsl::NtoMPanner | |
Ccsl::RingBuffer | RingBuffer is the storage + a default reader |
Ccsl::Stereoverb | |
Ccsl::StereoWidth | Stereo width processor – can mix stereo channels or subtract the sum from each to widen |
CSAFliter | |
►Ccsl::FrequencyAmount | FrequencyAmount – mix-in class with frequency and amount (BW) control inputs (may be constants or generators). amount (probably 0..1) is a generalised placeholder for bandwidth, resonance or radius, according to filter type or could equally be used as a kind of x,y location in the frequency domain |
Ccsl::Filter | Filter: the canonical-form n-pole/m-zero filter class |
►Ccsl::Phased | Phased – a mix-in for objects with phase accumulators (local float) and frequency controls (an input port) |
Ccsl::KarplusString | KarplusString – string model class |
►Ccsl::Oscillator | Oscillator – Abstract oscillator class; inherits from UnitGenerator, Phased, and Scalable and provides convenience constructors (freq, ampl, offset, phase) |
Ccsl::FSine | FSine – (uses a ringing filter for the sine calc) |
Ccsl::Impulse | Impulse – oscillator class (this create a single impulse delayed by 'delay' samples) |
Ccsl::Sawtooth | Sawtooth oscillator class (non-band-limited) |
►Ccsl::Sine | Sine – oscillator class (this computes the sine fcn on the fly) |
Ccsl::WaveShaper | WaveShaper – Wave-shaping oscillator class |
Ccsl::Square | Square oscillator class (non-band-limited) |
►Ccsl::WavetableOscillator | WavetableOscillator – Oscillator with a stored wave table that does table look-up. The default wave table is an 8192-sample sine. (perhaps accept a vector of freqs and a multichannel buffer?) |
►Ccsl::Abst_SoundFile | Here's the abstract sound file reader/writer class, a sample player UGen. The concrete subclasses represent sound file APIs, not individual formats |
Ccsl::CASoundFile | CoreAudio sound file |
Ccsl::JSoundFile | JUCE sound file |
Ccsl::LSoundFile | Here's the sound file reader/writer class; it assumes libSndFile and interleaved sample buffers |
Ccsl::CompOrCacheOscillator | CompOrCacheOscillator – Abstract oscillator class for those who can compute of cache their wavetables |
Ccsl::SineAsPhased | SineAsPhased – A sine oscillator that uses the Phased mix-in class, meaning that we inherit mFrequency and mPhase and macros for dynamic control |
Ccsl::SineAsScaled | SineAsScaled – A sine oscillator that also has scale and offset as dynamic controls (from Scalable) (Note the tripple inheritance) |
►Ccsl::Scalable | Scalable – mix-in class with scale and offset control inputs (may be constants or generators) |
►Ccsl::Envelope | Envelope: a collection of LineSegments; may have an input (scale) and act like a processor, or have no input and act like a control UGen. I inherit Scalable setScale, setOffset for inputs |
Ccsl::ADSR | ADSR = 4-segment attack/decay/sustain/release envelope class |
Ccsl::AR | AR = 3-segment attack/release envelope class |
Ccsl::RandEnvelope | RandEnvelope envelope class – makes random control signals using a single line segment |
Ccsl::Triangle | Triangle envelope class – equal attack/release times |
Ccsl::Filter | Filter: the canonical-form n-pole/m-zero filter class |
Ccsl::Freeverb | CSL port of the public domain Freeverb reverberator |
Ccsl::KarplusString | KarplusString – string model class |
Ccsl::Mixer | Mixer – The n-input m-channel mixer class |
►Ccsl::Noise | Abstract Noise class - inherits from UnitGenerator & Scalable, and provides constructors and basic pseudo-raondom methods |
Ccsl::PinkNoise | Pink noise – equal power per octave |
Ccsl::WhiteNoise | White noise – equal power per frequency |
Ccsl::Oscillator | Oscillator – Abstract oscillator class; inherits from UnitGenerator, Phased, and Scalable and provides convenience constructors (freq, ampl, offset, phase) |
Ccsl::Panner | The CSL mono-to-stereo L/R panner class |
Ccsl::RingBuffer | RingBuffer is the storage + a default reader |
Ccsl::RingBufferTap | RingBufferTap is a reader that loops over a buffer |
Ccsl::SineAsScaled | SineAsScaled – A sine oscillator that also has scale and offset as dynamic controls (from Scalable) (Note the tripple inheritance) |
►Ccsl::SpatialSource | Temp Spatial Sound Source |
Ccsl::DistanceSimulator | Only handles single sound sources because objects have different positions. Two objects can't ocuppy the same position, and usually distance cues go before the panning, so handling multiple sources by one Distance simulator, would producde a multi-channel object, where the positions aren't dynamic anymore |
CController | |
Ccontroller_str | |
Ccsl::CPoint | |
Ccsl::CSL_MIDIMessage | CSL_MIDIMessage |
Ccsl::CSL_RS_MSG | |
►Ccsl::CThread | The PThreads CSL Thread class |
►Ccsl::ThreadPthread | PThread version of Thread |
►Ccsl::NullIO | NullIO is an IO that uses a thread and a timer to call its graph's nextBuffer(); it doesn't do anything with the resulting buffer, but assumes that other objects (observers of the graph) will handle some actual IO |
Ccsl::StdIO | StdIO reads/write the UNIX Standard IO pipes |
►Ccsl::CVariable | CVariable is the the abstract external variable (plug or port) class. This is the abstract class for static and dynamic variables; it's a sample stream. Clients of Variable (oscillators, dsp units, etc) first ask whether its values are fixed over the length of the buffer or not. If the value is fixed, the client calls next_sample() to get the next sample and use it the DSP loop. If the value is not fixed, the client calls next_buffer() to get the next buffer of values |
Ccsl::DynamicVariable | Changing variable that can perform an operation (e.g., scaling) on another unit generator |
Ccsl::StaticVariable | StaticVariable – he static external variable (plug) class. This is a kind of variable that holds onto floating-point value that is fixed each control rate period (e.g., changes at most once per control rate) |
►Ccsl::DistanceCue | Pure Abstract Base Class for all distance cues. A DistanceCue subclass is just an algorithm that modifies a signal based on the distance from the listener. Distance Cues should hold their state, so when "process" is called they can modify the signal buffer given. When "compute" is called is usually due to a change in distance, so if anything has to be re-calculated, it's done |
Ccsl::AirAbsorptionCue | Simulates the frequency dependent air absorption using a one pole/zero lowpass filter |
Ccsl::IntensityAttenuationCue | Sound attenuation due to increasing distance. This "Base" Class uses the inverse square law. Subclass for other methods |
►CDocumentWindow | |
CCSLWindow | |
CCSLWindow | |
►CDocumentWindow | |
CCSLWindow | |
►Cexception | |
CSocketException | |
►Cexception | |
►Ccsl::CException | Base class of CSL exceptions (written upper-case). Has a string message |
►Ccsl::LogicError | Impossible operation |
Ccsl::DBError | DB Error |
Ccsl::MemoryError | Malloc failure subclass |
Ccsl::RunTimeError | Illegal operation at run time |
Ccsl::TimingError | Time-out |
►Ccsl::ValueError | Wrong kind of operand error |
Ccsl::DomainError | Numerical data of wrong type |
Ccsl::IOError | IO Error |
Ccsl::OutOfRangeError | Data out of range |
Ccsl::ProcessingError | Processing Error |
Ccsl::FAllpass | All-pass filter class |
CFFTReal | |
Ccsl::FilterSpecification | Forward declaration |
►CFrameStream | |
Ccsl::DLine | |
Ccsl::Grain | Grain data structure This implementation uses a linked list data structure. You might want to add a few more members to this for flexibility |
Ccsl::GrainCloud | GrainCloud – routine for playing clouds under GUI control. This could be called a cloud or a stream. You could also add a few more variables to make more flexible clouds |
Ccsl::HRTF | HRTF: holds the data that corresponds to an HRTF for a single position. It has a list of complex buffers for the FFTs of the HRIR, typically 16 blocks of 512 each for an 8k HRTF. This version knows how to parse the IRCAM hrtfs sets Subclasses could load different HRTF sets (e.g., CIPIC) |
Ccsl::HRTFDatabase | HRTFDatabase: has a vector of HRTFs and can access them by position – hrtfAt(CPoint) – or by index – hrtfAt(unsigned). Implemented as a Singleton because it's large (typ 188 HRTFs, 25 MB). Create it with a folder/resource name, it reads "files.txt" for a list of HRIR files to load. This has a number of file/folder/DB IO methods for load/store of bulk HRTF data sets in IRCAM format and CSL's pre-processed HRTF.dat files |
CInst_Context | |
Ccsl::Interleaver | Interleaver handles copying interleaved sample buffers (like sound files and inter-process sockets) to/from non-interleaved CSL-style Buffer objects |
Ccsl::IODevice | IO Device class – a holder for a sound interface with name, id, # IO channels, etc |
►CJUCEApplication | |
CJUCECSLApplication | |
►CJUCEApplication | |
CJUCECSLApplication | |
CJUCECSLApplication | |
►CListener | |
CCSLSignalComponent | |
►CListener | |
CCSLComponent | |
►CListener | |
CCSLSignalComponent | |
►CListener | |
CCSLComponent | |
►CListener | |
CCSLComponent | |
►CListener | |
CCSLSignalComponent | |
►Clogic_error | |
Cmath::matrix_error | |
Cmath::matrix | |
►CMidiInputCallback | |
Ccsl::MIDIIn | MIDIIn class is-a MidiInputCallback too, and an "input-ready" flag |
►Ccsl::Model | The Model/Observable/Subject class; instances of its subclasses should send themselves, this->changed(some_data); on "relevant" state changes; the code they inherit (from Model) manages updating the list of observer/dependent objects in that they each receive update(some_data); and can access the model-passed data (the model might pass "this") |
►Ccsl::IO | IO – the abstract I/O scheduling class; subclasses interface to specific I/O APIs |
►Ccsl::AUIO | General-purpose AudioUnit IO class |
Ccsl::CAIO | CoreAudio IO class |
Ccsl::iPhoneIO | CoreAudio IO class for the iPhone |
Ccsl::AUIO | General-purpose AudioUnit IO class |
Ccsl::FileIO | FileIO.h – IO using a sound file for storing output sample data |
Ccsl::JackIO | JackIO is an IO that uses a thread and a timer to call its graph's nextBuffer(); it doesn't do anything with the resulting buffer, but assumes that other objects (observers of the graph) will handle some actual IO |
Ccsl::JUCEIO | JUCEIO is an IO that runs as a JUCE |
Ccsl::NullIO | NullIO is an IO that uses a thread and a timer to call its graph's nextBuffer(); it doesn't do anything with the resulting buffer, but assumes that other objects (observers of the graph) will handle some actual IO |
Ccsl::PAIO | The PortAudio IO class |
Ccsl::RemoteIO | RemoteIO class |
Ccsl::VSTIO | VSTIO is an IO that answers the VST processReplacing() call by calling its CSL graph |
►Ccsl::MIDIIO | MIDIIO class: superclass of in and out; has a message buffer and current messages It's a model so you can observe it. Uses mMsg.CMIDIMessageType as a status flag |
Ccsl::MIDIIn | MIDIIn class is-a MidiInputCallback too, and an "input-ready" flag |
Ccsl::MIDIIn | MIDIIn class is-a MidiInputCallback too, and an "input-ready" flag |
Ccsl::MIDIOut | MIDIOut class write msgs out to a device (or file) |
Ccsl::MIDIOut | MIDIOut class write msgs out to a device (or file) |
Ccsl::MIDIPlayer | MIDI stream/file player |
►Ccsl::SpeakerLayout | |
Ccsl::HeadphoneSpeakerLayout | "Headphone Layout", where two phones are positioned 90¼ left, 90¼ right and no elevation (0¼) |
Ccsl::StereoSpeakerLayout | Standard "Stereo Speaker Layout", where two speakers are positioned 30¼ left, 30¼ right and no elevation (0¼) |
►Ccsl::UnitGenerator | Forward declaration |
►Ccsl::AmbisonicUnitGenerator | Ambisonic Abstract Base Class |
Ccsl::AmbisonicDecoder | |
Ccsl::AmbisonicEncoder | |
Ccsl::AmbisonicMixer | |
Ccsl::AmbisonicRotator | |
Ccsl::BlockResizer | Regularizes the amount of data called for. This is useful for time-frequency transformations that only work with certain buffer sizes |
Ccsl::BufferStream | Class to simplify writing into and playing back buffers. Think of this as a simple buffer that has a seek, read and write calls built-in |
Ccsl::DelayLine | |
Ccsl::Effect | Effect – mix-in for classes that have unit generators as inputs (like filters) |
Ccsl::Envelope | Envelope: a collection of LineSegments; may have an input (scale) and act like a processor, or have no input and act like a control UGen. I inherit Scalable setScale, setOffset for inputs |
Ccsl::GrainPlayer | GrainPlayer – low-level granular synthesis generator, uses a list of current grains |
Ccsl::IFFT | Inverse FFT |
►Ccsl::Instrument | Instrument class (abstract) |
Ccsl::AdditiveInstrument | AdditiveInstrument |
►Ccsl::FMInstrument | FMInstrument |
Ccsl::FancyFMInstrument | FancyFMInstrument - FM with vibrato (with AR-envelope), attack chiff (filtered noise with AR-envelope), and random freq. drift and ampl. swell envelopes |
►Ccsl::SndFileInstrument | Sound file player instrument |
Ccsl::SampleBankInstrument | Sample bank player instrument |
Ccsl::VAdditiveInstrument | VAdditiveInstrument = vector-additive - cross-fade between 2 SOS spectra Envelope mXEnv(dur, pause, xfade, 0.0f) float paus = fRandV(0.5) * dur; float fade = fRandV(dur - paus); AR(float t, float i, float a, float r); |
Ccsl::KarplusString | KarplusString – string model class |
Ccsl::LineSegment | A linearly interpolated segment – this has start and end values, and a duration (in seconds) |
Ccsl::Lorenz | Lorenz chaotic oscillator = this plays one variable of the Lorenz Strange Attractor between +1 and -1 |
Ccsl::Microphone | Microphone – copies the input buffer (from the sound driver) to its output |
Ccsl::Mixer | Mixer – The n-input m-channel mixer class |
Ccsl::Noise | Abstract Noise class - inherits from UnitGenerator & Scalable, and provides constructors and basic pseudo-raondom methods |
Ccsl::Oscillator | Oscillator – Abstract oscillator class; inherits from UnitGenerator, Phased, and Scalable and provides convenience constructors (freq, ampl, offset, phase) |
Ccsl::RemoteStream | RemoteStream class |
Ccsl::RingBufferTap | RingBufferTap is a reader that loops over a buffer |
Ccsl::SimpleSine | SimpleSine – The simplest CSL sine oscillator class |
Ccsl::SineAsPhased | SineAsPhased – A sine oscillator that uses the Phased mix-in class, meaning that we inherit mFrequency and mPhase and macros for dynamic control |
Ccsl::SineAsScaled | SineAsScaled – A sine oscillator that also has scale and offset as dynamic controls (from Scalable) (Note the tripple inheritance) |
Ccsl::SoundCue | SoundCue – a pointer to a segment of a sound file |
►Ccsl::Spatializer | Container class that simplifies the spatial audio interface. This layer hides most of the inner-working of audio spatialization, providing a simple interface for sound placement in a space |
Ccsl::Auralizer | |
►Ccsl::SpatialPanner | Base class for all panners. Handles source management and holds a speaker layout |
Ccsl::AmbisonicPanner | Ambisonic Panner Wraps around the different ambisonic classes, providing a single interface for encoding, manipulating and decoding (i.e. panning) multiple UnitGenerators |
Ccsl::BinauralPanner | Forward declaration |
Ccsl::SimplePanner | Simple Panner |
Ccsl::SimplePanner | Simple Panner |
►Ccsl::VBAP | Vector Base Amplitude Panning |
Ccsl::StereoPanner | Simple Stereo Panner |
Ccsl::SurroundPanner | Generic Panner for most surround formats. It accepts any number of speakers around the horizontal plane, and a subwoofer (.1 or not) |
Ccsl::SpatialSource | Temp Spatial Sound Source |
Ccsl::StaticVariable | StaticVariable – he static external variable (plug) class. This is a kind of variable that holds onto floating-point value that is fixed each control rate period (e.g., changes at most once per control rate) |
►Ccsl::Window | Window; The superclass of all other window function classes in CSL. Subclasses need only to implement the fillWindow(); and the Constructors |
Ccsl::BlackmanHarrisWindow | BlackmanHarrisWindow |
Ccsl::BlackmanWindow | BlackmanWindow |
Ccsl::HammingWindow | HammingWindow: Belongs to the familly of cosine window functions |
Ccsl::HannWindow | HannWindow |
Ccsl::RectangularWindow | RectangularWindow:A rectangular window has all values set to the Gain value, or by default to 1 |
Ccsl::TriangularWindow | TriangularWindow:A triangularWindow window |
Ccsl::WelchWindow | WelchWindow: This is basically an equal-power curve |
►Ccsl::Observer | CSL Observer/Dependent/Monitor class – instances receive update() messages from "models" and handle some argument, which may be the model's "this" pointer, or any other data |
Ccsl::Spatializer | Container class that simplifies the spatial audio interface. This layer hides most of the inner-working of audio spatialization, providing a simple interface for sound placement in a space |
Ccsl::SpatialPanner | Base class for all panners. Handles source management and holds a speaker layout |
CCSLMIDIComponent | |
CCSLMIDIComponent | |
COrbit | |
Ccsl::Partial | Struct for partial overtones |
CPME | |
CPMESource | |
Ccsl::Port | Port – used to represent constant, control-rate or signal inputs and outputs in named maps; holds a UnitGenerator and its buffer, OR a single floating-point value (in which case the UGen pointer is set to NULL and mPtrIncrement = 0) |
►CProcessor | |
Ccsl::DLine | |
►Ccsl::Seekable | Seekable – a mix-in for positionable streams |
Ccsl::Abst_SoundFile | Here's the abstract sound file reader/writer class, a sample player UGen. The concrete subclasses represent sound file APIs, not individual formats |
Ccsl::BufferStream | Class to simplify writing into and playing back buffers. Think of this as a simple buffer that has a seek, read and write calls built-in |
Ccsl::RingBufferTap | RingBufferTap is a reader that loops over a buffer |
Ccsl::SHARCInstrument | SHARC instrument class |
Ccsl::SHARCLibrary | SHARC library class |
Ccsl::SHARCSpectrum | SHARC spectrum class |
Ccsl::ShoeBox | |
►CSliderListener | |
CCSLComponent | |
CCSLMIDIComponent | |
CCSLServerComponent | |
►CSocket | |
►CCommunicatingSocket | |
CTCPSocket | |
CUDPSocket | |
CTCPServerSocket | |
Ccsl::SoundFileMetadata | Class SndFileMetadata holds the ID3 tags of a sound file |
Ccsl::Speaker | Represents a speaker as a position relative to the center of a space |
Ccsl::SpeakerLayoutExpert | |
Ccsl::SpeakerSet | Groups two or three loudspeakers, and their inverse. Used for VBAP computations |
Ccsl::SpeakerSetLayout | |
►Ccsl::Synch | Sync is a cross-thread synchronization object |
Ccsl::SynchPthread | PThread version of Sync |
Ccsl::testStruct | Struct used for the JUCE pop-up menu of tests (see the test files) |
►CThread | |
CGThread | GThread takes a CSL test function and runs it |
CGThread | GThread takes a CSL test function and runs it |
CLThread | |
CLThread | |
►CTimer | |
CAudioWaveformDisplay | |
CCSLAbstComponent | |
CCSLComponent | |
CCSLComponent | |
CCSLMIDIComponent | |
CCSLMIDIComponent | |
CCSLServerComponent | |
CVUMeter | |
CFFTReal::TrigoLUT | |
Ccsl::VBAPSourceCache | |
►Ccsl::Writeable | Writeable – a mix-in for buffers and streams that one can write to |
Ccsl::Abst_SoundFile | Here's the abstract sound file reader/writer class, a sample player UGen. The concrete subclasses represent sound file APIs, not individual formats |
Ccsl::BufferStream | Class to simplify writing into and playing back buffers. Think of this as a simple buffer that has a seek, read and write calls built-in |
Ccsl::RingBuffer | RingBuffer is the storage + a default reader |