Jack2 1.9.6
|
The base class for audio drivers: drivers with audio ports. More...
#include <JackAudioDriver.h>
Public Member Functions | |
JackAudioDriver (const char *name, const char *alias, JackLockedEngine *engine, JackSynchro *table) | |
virtual int | Open (jack_nframes_t buffer_size, jack_nframes_t samplerate, bool capturing, bool playing, int inchannels, int outchannels, bool monitor, const char *capture_driver_name, const char *playback_driver_name, jack_nframes_t capture_latency, jack_nframes_t playback_latency) |
virtual int | Open (bool capturing, bool playing, int inchannels, int outchannels, bool monitor, const char *capture_driver_name, const char *playback_driver_name, jack_nframes_t capture_latency, jack_nframes_t playback_latency) |
virtual int | Process () |
virtual int | ProcessNull () |
virtual int | Attach () |
virtual int | Detach () |
virtual int | Write () |
virtual int | SetBufferSize (jack_nframes_t buffer_size) |
virtual int | SetSampleRate (jack_nframes_t sample_rate) |
Protected Member Functions | |
void | ProcessGraphAsync () |
void | ProcessGraphSync () |
void | WaitUntilNextCycle () |
virtual int | ProcessAsync () |
virtual int | ProcessSync () |
jack_default_audio_sample_t * | GetInputBuffer (int port_index) |
jack_default_audio_sample_t * | GetOutputBuffer (int port_index) |
jack_default_audio_sample_t * | GetMonitorBuffer (int port_index) |
Protected Attributes | |
int | fCaptureChannels |
int | fPlaybackChannels |
jack_port_id_t | fCapturePortList [DRIVER_PORT_NUM] |
jack_port_id_t | fPlaybackPortList [DRIVER_PORT_NUM] |
jack_port_id_t | fMonitorPortList [DRIVER_PORT_NUM] |
bool | fWithMonitorPorts |
The base class for audio drivers: drivers with audio ports.
Definition at line 33 of file JackAudioDriver.h.