summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lv2_plugin.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-11-30 22:22:05 +0000
committerDavid Robillard <d@drobilla.net>2010-11-30 22:22:05 +0000
commitda35445adb03a57f8c8a159b477e081f7fc4ef60 (patch)
tree615c87dc9f57385435cbf2ee5a1fa8c9ff6ec41d /libs/ardour/ardour/lv2_plugin.h
parentf9c6d2d5a1bf6f1c9d756a6e4b18c6032df6e139 (diff)
Tidy (whitespace changes only).
git-svn-id: svn://localhost/ardour2/branches/3.0@8137 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/lv2_plugin.h')
-rw-r--r--libs/ardour/ardour/lv2_plugin.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/libs/ardour/ardour/lv2_plugin.h b/libs/ardour/ardour/lv2_plugin.h
index 4335d65539..0c8b3e511c 100644
--- a/libs/ardour/ardour/lv2_plugin.h
+++ b/libs/ardour/ardour/lv2_plugin.h
@@ -1,6 +1,6 @@
/*
- Copyright (C) 2008 Paul Davis
- Author: Dave Robillard
+ Copyright (C) 2008-2010 Paul Davis
+ Author: David Robillard
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -26,7 +26,6 @@
#include <string>
#include <dlfcn.h>
-
#include "pbd/stateful.h"
#include <jack/types.h>
@@ -122,29 +121,30 @@ class LV2Plugin : public ARDOUR::Plugin
bool has_editor() const;
private:
- void* _module;
- LV2World& _world;
- LV2_Feature** _features;
- SLV2Plugin _plugin;
- SLV2UI _ui;
- SLV2Value _name;
- SLV2Value _author;
- SLV2Instance _instance;
- nframes_t _sample_rate;
- float* _control_data;
- float* _shadow_data;
- float* _defaults;
- float* _latency_control_port;
- bool _was_activated;
- bool _supports_persist;
- std::vector<bool> _port_is_input;
+ void* _module;
+ LV2World& _world;
+ LV2_Feature** _features;
+ SLV2Plugin _plugin;
+ SLV2UI _ui;
+ SLV2Value _name;
+ SLV2Value _author;
+ SLV2Instance _instance;
+ nframes_t _sample_rate;
+ float* _control_data;
+ float* _shadow_data;
+ float* _defaults;
+ float* _latency_control_port;
+ bool _was_activated;
+ bool _supports_persist;
+ std::vector<bool> _port_is_input;
+
std::map<std::string,uint32_t> _port_indices;
typedef struct { const void* (*extension_data)(const char* uri); } LV2_DataAccess;
LV2_DataAccess _data_access_extension_data;
- LV2_Feature _data_access_feature;
- LV2_Feature _instance_access_feature;
- LV2_Feature _persist_feature;
+ LV2_Feature _data_access_feature;
+ LV2_Feature _instance_access_feature;
+ LV2_Feature _persist_feature;
static URIMap _uri_map;
static uint32_t _midi_event_type;
@@ -183,8 +183,8 @@ struct LV2World {
class LV2PluginInfo : public PluginInfo {
public:
- LV2PluginInfo (void* slv2_world, void* slv2_plugin);;
- ~LV2PluginInfo ();;
+ LV2PluginInfo (void* slv2_world, void* slv2_plugin);
+ ~LV2PluginInfo ();
static PluginInfoList* discover (void* slv2_world);
PluginPtr load (Session& session);