Go to the documentation of this file.
42 #ifndef __LOOPBACK_H__
43 #define __LOOPBACK_H__
58 LoopBack(
int numchans) { mNumChannels = numchans; };
64 virtual void compute(
int nframes,
float** inputs,
float** outputs);
virtual int getNumOutputs()
Return Number of Output Channels.
Definition: LoopBack.h:63
virtual ~LoopBack()
The class destructor.
Definition: LoopBack.h:60
Interface for the process plugins to add to the JACK callback process in JackAudioInterface.
Definition: ProcessPlugin.h:52
virtual int getNumInputs()
Return Number of Input Channels.
Definition: LoopBack.h:62
virtual void compute(int nframes, float **inputs, float **outputs)
Compute process.
Definition: LoopBack.cpp:50
Connect Inputs to Outputs.
Definition: LoopBack.h:54
LoopBack(int numchans)
The class constructor sets the number of channels to connect as loopback.
Definition: LoopBack.h:58