summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/LADSPAPlugin.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-28 04:55:46 +0000
committerDavid Robillard <d@drobilla.net>2008-09-28 04:55:46 +0000
commit46459ab2f46fdb826102562c266b0bc2921a3737 (patch)
tree892a8974c7a42316fc29e07c039360dbebbdce91 /src/libs/engine/LADSPAPlugin.cpp
parentd83003cd073380fe0a28cd1b3ce40dc7ab072fe0 (diff)
downloadingen-46459ab2f46fdb826102562c266b0bc2921a3737.tar.gz
ingen-46459ab2f46fdb826102562c266b0bc2921a3737.tar.bz2
ingen-46459ab2f46fdb826102562c266b0bc2921a3737.zip
Remove header namespace pollution (particularly from libs/gui/App.hpp).
Fix more LV2 plugin RDF race/lock issues with -eg. Show human readable names on new ports when human readable is set (fix ticket #202). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1523 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/LADSPAPlugin.cpp')
-rw-r--r--src/libs/engine/LADSPAPlugin.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libs/engine/LADSPAPlugin.cpp b/src/libs/engine/LADSPAPlugin.cpp
index a43baa9a..4a0b5c14 100644
--- a/src/libs/engine/LADSPAPlugin.cpp
+++ b/src/libs/engine/LADSPAPlugin.cpp
@@ -21,6 +21,8 @@
#include "LADSPAPlugin.hpp"
#include "LADSPANode.hpp"
#include "NodeImpl.hpp"
+#include "Engine.hpp"
+#include "AudioDriver.hpp"
using namespace std;
@@ -31,11 +33,13 @@ NodeImpl*
LADSPAPlugin::instantiate(const string& name,
bool polyphonic,
Ingen::PatchImpl* parent,
- SampleRate srate,
- size_t buffer_size)
+ Engine& engine)
{
assert(_id != 0);
+ SampleCount srate = engine.audio_driver()->sample_rate();
+ SampleCount buffer_size = engine.audio_driver()->buffer_size();
+
LADSPA_Descriptor_Function df = NULL;
LADSPANode* n = NULL;