13
0
livetrax/libs/fst/jackvst.h
Paul Davis 449aab3c46 rollback to 3428, before the mysterious removal of libs/* at 3431/3432
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
2008-06-02 21:41:35 +00:00

36 lines
789 B
C

#ifndef __jack_vst_h__
#define __jack_vst_h__
#include </usr/include/sys/types.h>
#include </usr/include/sys/time.h>
#include <jack/jack.h>
#include <jack/ringbuffer.h>
#include <fst.h>
#include <alsa/asoundlib.h>
typedef struct _JackVST JackVST;
struct _JackVST {
jack_client_t *client;
FSTHandle* handle;
FST* fst;
float **ins;
float **outs;
jack_port_t **inports;
jack_port_t **outports;
void* userdata;
int bypassed;
int muted;
int resume_called;
/* For VST/i support */
pthread_t midi_thread;
snd_seq_t* seq;
int midiquit;
jack_ringbuffer_t* event_queue;
struct VstEvents* events;
};
#endif /* __jack_vst_h__ */