summaryrefslogtreecommitdiff
path: root/libs/fst/jackvst.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-22 02:27:26 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-22 02:27:26 +0000
commit16aece1d47ad1c1137d68ab12989cbc94b112c0f (patch)
tree4d07547a58e4209f3d40642f40907e2b658fef2b /libs/fst/jackvst.h
parent51e43ae5a7df65c2d0b7c1f2dcec22511cfb8a98 (diff)
Share main VSTFX / FST struct between windows / linux VSTs.
git-svn-id: svn://localhost/ardour2/branches/3.0@10762 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/fst/jackvst.h')
-rw-r--r--libs/fst/jackvst.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/libs/fst/jackvst.h b/libs/fst/jackvst.h
index 28c6f05852..b496f68493 100644
--- a/libs/fst/jackvst.h
+++ b/libs/fst/jackvst.h
@@ -12,8 +12,8 @@ typedef struct _JackVST JackVST;
struct _JackVST {
jack_client_t *client;
- VSTHandle* handle;
- FST* fst;
+ VSTHandle * handle;
+ VSTState * fst;
float **ins;
float **outs;
jack_port_t *midi_port;
@@ -24,13 +24,6 @@ struct _JackVST {
int muted;
int current_program;
- int midi_map[128];
- volatile int midi_learn;
- volatile int midi_learn_CC;
- volatile int midi_learn_PARAM;
-
- int resume_called;
-
/* For VST/i support */
int want_midi;