#include <VrSource.h>
Inheritance diagram for VrSource< oType >:
Public Member Functions | |
VrSource () | |
VrSource (int outputs) | |
virtual int | forecast (VrSampleRange output, VrSampleRange *inputs) |
virtual const char * | name () |
default name for a module (override with actual name) | |
virtual int | work (VrSampleRange output, void *o[], VrSampleRange inputs[], void *i[]) |
Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. | |
virtual int | work2 (VrSampleRange output, void *o[])=0 |
virtual bool | isConnectedToSource () |
|
|
|
|
|
|
|
Reimplemented from VrSigProc. |
|
default name for a module (override with actual name)
Reimplemented from VrSigProc. Reimplemented in VrAudioSource< oType >, VrFakeGuppiSource< oType >, VrFileSource< oType >, VrGuppiSource< oType >, VrTestCountSource< oType >, VrUDPSource< oType >, GrAudioSource< oType >, GrBitSource< oType >, GrMC4020Source< oType >, GrNoiseSource< oType >, VrChirpSource< oType >, and GrTestSource. |
|
Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. Pointers start at corresponding VrSampleIndex in the range params. output.size is a multiple of outputSize. Returns the number of outputs (<= output.size) that it was able to compute with the given input ranges. If this value is < output.size, forecast() will need to be called again. Implements VrSigProc. |
|