aboutsummaryrefslogtreecommitdiffstats
path: root/src/interpolator.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-31 06:03:45 +0000
committerDavid Robillard <d@drobilla.net>2012-05-31 06:03:45 +0000
commit8b46fd1ff51b29cded517c9c2d166611e8c453fc (patch)
tree14a338294d302e663818570796bb5311297a9748 /src/interpolator.c
parent9529f203c09d6dc8f4c2f12c3add9ec906f4bdba (diff)
downloadblop.lv2-8b46fd1ff51b29cded517c9c2d166611e8c453fc.tar.gz
blop.lv2-8b46fd1ff51b29cded517c9c2d166611e8c453fc.tar.bz2
blop.lv2-8b46fd1ff51b29cded517c9c2d166611e8c453fc.zip
Blip => Blop. I give up trying to give ports new names.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/blop.lv2@4484 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/interpolator.c')
-rw-r--r--src/interpolator.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interpolator.c b/src/interpolator.c
index 52a6c37..37574ad 100644
--- a/src/interpolator.c
+++ b/src/interpolator.c
@@ -93,8 +93,8 @@ activate(LV2_Handle instance)
}
static void
-runInterpolator(LV2_Handle instance,
- uint32_t sample_count)
+run(LV2_Handle instance,
+ uint32_t sample_count)
{
Interpolator* plugin = (Interpolator*)instance;
@@ -121,11 +121,11 @@ runInterpolator(LV2_Handle instance,
}
static const LV2_Descriptor descriptor = {
- "http://drobilla.net/plugins/blip/interpolator",
+ "http://drobilla.net/plugins/blop/interpolator",
instantiate,
connect_port,
activate,
- runInterpolator,
+ run,
NULL,
cleanup,
NULL,