diff options
author | David Robillard <d@drobilla.net> | 2012-09-16 16:59:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-16 16:59:35 +0000 |
commit | 72886d138d8365d3ccd68e7dc0cec9ebd6ce8533 (patch) | |
tree | 6a39989c3564013ac352a028a0ef023d3bb3af1d /src | |
parent | 7ad79af75eee9a3e4377abb1db3ae9f71dc8af5d (diff) | |
download | jalv-72886d138d8365d3ccd68e7dc0cec9ebd6ce8533.tar.gz jalv-72886d138d8365d3ccd68e7dc0cec9ebd6ce8533.tar.bz2 jalv-72886d138d8365d3ccd68e7dc0cec9ebd6ce8533.zip |
Support latest options and morph extensions.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4776 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/jalv.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -950,15 +950,15 @@ main(int argc, char** argv) /* Build options array to pass to plugin */ const LV2_Options_Option options[] = { - { jalv.urids.param_sampleRate, sizeof(float), jalv.urids.atom_Float, - &jalv.sample_rate }, - { jalv.urids.bufsz_minBlockLength, sizeof(int32_t), jalv.urids.atom_Int, - &jalv.block_length }, - { jalv.urids.bufsz_maxBlockLength, sizeof(int32_t), jalv.urids.atom_Int, - &jalv.block_length }, - { jalv.urids.bufsz_sequenceSize, sizeof(int32_t), jalv.urids.atom_Int, - &jalv.midi_buf_size }, - { 0, 0, 0, NULL } + { LV2_OPTIONS_INSTANCE, 0, jalv.urids.param_sampleRate, + sizeof(float), jalv.urids.atom_Float, &jalv.sample_rate }, + { LV2_OPTIONS_INSTANCE, 0, jalv.urids.bufsz_minBlockLength, + sizeof(int32_t), jalv.urids.atom_Int, &jalv.block_length }, + { LV2_OPTIONS_INSTANCE, 0, jalv.urids.bufsz_maxBlockLength, + sizeof(int32_t), jalv.urids.atom_Int, &jalv.block_length }, + { LV2_OPTIONS_INSTANCE, 0, jalv.urids.bufsz_sequenceSize, + sizeof(int32_t), jalv.urids.atom_Int, &jalv.midi_buf_size }, + { LV2_OPTIONS_INSTANCE, 0, 0, 0, 0, NULL } }; options_feature.data = &options; |