summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lv2_plugin.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-29 20:22:18 +0000
committerDavid Robillard <d@drobilla.net>2012-08-29 20:22:18 +0000
commit7e335a8234097198b392b55f7161680d11540236 (patch)
tree66d544f760a610a57d40d25d57b93d329b7f6725 /libs/ardour/ardour/lv2_plugin.h
parentfd378713158890b29f0dd39b9d8911c47b429fb4 (diff)
Implement latest buf-size extension via new options extension.
git-svn-id: svn://localhost/ardour2/branches/3.0@13151 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/lv2_plugin.h')
-rw-r--r--libs/ardour/ardour/lv2_plugin.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ardour/ardour/lv2_plugin.h b/libs/ardour/ardour/lv2_plugin.h
index 6b51cb3eae..1090f30307 100644
--- a/libs/ardour/ardour/lv2_plugin.h
+++ b/libs/ardour/ardour/lv2_plugin.h
@@ -225,7 +225,11 @@ class LV2Plugin : public ARDOUR::Plugin, public ARDOUR::Workee
LV2_Feature _make_path_feature;
LV2_Feature _log_feature;
LV2_Feature _work_schedule_feature;
- LV2_Feature _buf_size_feature;
+ LV2_Feature _options_feature;
+
+ // Options passed to plugin
+ int32_t _block_length;
+ int32_t _seq_size;
mutable unsigned _state_version;