aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-22 22:38:05 +0000
committerDavid Robillard <d@drobilla.net>2012-05-22 22:38:05 +0000
commit5f6a3c53cb6fa129b9d869a70bfa3b44b24de7a6 (patch)
treec986b5eec1789d7ac0464cd66ee996ca23c45e72 /src
parent6f3d2fef5d1b2ef4ee969465585c582e4fbca8e6 (diff)
downloadblop.lv2-5f6a3c53cb6fa129b9d869a70bfa3b44b24de7a6.tar.gz
blop.lv2-5f6a3c53cb6fa129b9d869a70bfa3b44b24de7a6.tar.bz2
blop.lv2-5f6a3c53cb6fa129b9d869a70bfa3b44b24de7a6.zip
Make arithmetic plugins use CVPort.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/blip.lv2@4439 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/product.c2
-rw-r--r--src/ratio.c2
-rw-r--r--src/sum.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/product.c b/src/product.c
index 45fa7ec..3ac4470 100644
--- a/src/product.c
+++ b/src/product.c
@@ -140,7 +140,7 @@ static const LV2_Descriptor descriptor = {
instantiate,
connect_port,
NULL,
- runProduct_icic_oc,
+ runProduct_iaia_oa,
NULL,
cleanup,
NULL,
diff --git a/src/ratio.c b/src/ratio.c
index 98c7ce3..48a7336 100644
--- a/src/ratio.c
+++ b/src/ratio.c
@@ -173,7 +173,7 @@ static const LV2_Descriptor descriptor = {
instantiate,
connect_port,
NULL,
- runRatio_ncdc_oc,
+ runRatio_nada_oa,
NULL,
cleanup,
NULL,
diff --git a/src/sum.c b/src/sum.c
index ca86483..ead52d7 100644
--- a/src/sum.c
+++ b/src/sum.c
@@ -140,7 +140,7 @@ static const LV2_Descriptor descriptor = {
instantiate,
connect_port,
NULL,
- runSum_icic_oc,
+ runSum_iaia_oa,
NULL,
cleanup,
NULL,