JackTrip
|
A simple (basic) network Karplus Strong. More...
#include <NetKS.h>
Public Member Functions | |
virtual int | getNumInputs () |
Return Number of Input Channels. More... | |
virtual int | getNumOutputs () |
Return Number of Output Channels. More... | |
virtual void | instanceInit (int samplingFreq) |
virtual void | init (int samplingFreq) |
Do proper Initialization of members and class instances. By default this initializes the Sampling Frequency. If a class instance depends on the sampling frequency, it should be initialize here. More... | |
virtual void | compute (int count, float **input, float **output) |
Compute process. More... | |
![]() | |
ProcessPlugin () | |
The Class Constructor. More... | |
virtual | ~ProcessPlugin () |
The Class Destructor. More... | |
virtual char * | getName () |
virtual bool | getInited () |
virtual void | setVerbose (bool v) |
Static Public Member Functions | |
static void | classInit (int) |
Additional Inherited Members | |
![]() | |
int | fSamplingFreq |
Faust Data member, Sampling Rate. More... | |
bool | inited = false |
bool | verbose = false |
A simple (basic) network Karplus Strong.
This plugin creates a one channel network karplus strong.
|
inlinestatic |
|
inlinevirtual |
Compute process.
Implements ProcessPlugin.
|
inlinevirtual |
Return Number of Input Channels.
Implements ProcessPlugin.
|
inlinevirtual |
Return Number of Output Channels.
Implements ProcessPlugin.
|
inlinevirtual |
Do proper Initialization of members and class instances. By default this initializes the Sampling Frequency. If a class instance depends on the sampling frequency, it should be initialize here.
Reimplemented from ProcessPlugin.
|
inlinevirtual |