summaryrefslogtreecommitdiffstats
path: root/src/server/InternalPlugin.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-02-17 19:23:12 +0100
committerDavid Robillard <d@drobilla.net>2017-02-18 19:38:13 +0100
commit2754f232613dca72c2f964d092569faf1a176c80 (patch)
tree6a8966ca56acd74a42c691be5d900d221ceb348d /src/server/InternalPlugin.cpp
parentfa6bb9afe8fcf2b0b8348495b9c4e1d6425136f0 (diff)
downloadingen-2754f232613dca72c2f964d092569faf1a176c80.tar.gz
ingen-2754f232613dca72c2f964d092569faf1a176c80.tar.bz2
ingen-2754f232613dca72c2f964d092569faf1a176c80.zip
Reduce Driver coupling
Diffstat (limited to 'src/server/InternalPlugin.cpp')
-rw-r--r--src/server/InternalPlugin.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/InternalPlugin.cpp b/src/server/InternalPlugin.cpp
index 1d397f14..3342ef84 100644
--- a/src/server/InternalPlugin.cpp
+++ b/src/server/InternalPlugin.cpp
@@ -21,7 +21,6 @@
#include "internals/Time.hpp"
#include "internals/Trigger.hpp"
-#include "Driver.hpp"
#include "Engine.hpp"
#include "InternalPlugin.hpp"
@@ -49,7 +48,7 @@ InternalPlugin::instantiate(BufferFactory& bufs,
Engine& engine,
const LilvState* state)
{
- const SampleCount srate = engine.driver()->sample_rate();
+ const SampleCount srate = engine.sample_rate();
if (uri() == NS_INTERNALS "BlockDelay") {
return new BlockDelayNode(this, bufs, symbol, polyphonic, parent, srate);