From 8b46fd1ff51b29cded517c9c2d166611e8c453fc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 31 May 2012 06:03:45 +0000 Subject: 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 --- src/interpolator.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/interpolator.c') 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, -- cgit v1.2.1