[SCM] calf/master: + Framework: microname fixes + Small modules: fixed output microname in control-rate operators

js at users.alioth.debian.org js at users.alioth.debian.org
Tue May 7 15:37:37 UTC 2013


The following commit has been merged in the master branch:
commit cac7161f1fe1add9ef12591fa36bbe51ae37c88a
Author: kfoltman <kfoltman at 78b06b96-2940-0410-b7fc-879d825d01d8>
Date:   Fri Sep 26 19:56:47 2008 +0000

    + Framework: microname fixes
    + Small modules: fixed output microname in control-rate operators
    
    
    
    git-svn-id: https://calf.svn.sourceforge.net/svnroot/calf/trunk@302 78b06b96-2940-0410-b7fc-879d825d01d8

diff --git a/src/makerdf.cpp b/src/makerdf.cpp
index db5e357..78dcaf3 100644
--- a/src/makerdf.cpp
+++ b/src/makerdf.cpp
@@ -438,6 +438,8 @@ void make_ttl(string path_prefix)
         
         ttl += "    doap:name \""+string(pi->label)+"\" ;\n";
         ttl += "    doap:license <http://usefulinc.com/doap/licenses/lgpl> ;\n";
+        if (pi->microname != "N/A")
+            ttl += "    <http://lv2plug.in/ns/dev/tiny-name> \"" + pi->microname + "\" ;\n";
 
         if (!pi->ports.empty())
         {
diff --git a/src/modules_small.cpp b/src/modules_small.cpp
index 9b985b6..55d999f 100644
--- a/src/modules_small.cpp
+++ b/src/modules_small.cpp
@@ -307,7 +307,7 @@ public:
             cports[idx++] = &pii->control_port("in_1", "In 1", in1, "").input();
             cports[idx++] = &pii->control_port("in_2", "In 2", in2, "").input();
         }
-        cports[idx++] = &pii->control_port("out", "Out", 0).output();
+        cports[idx++] = &pii->control_port("out", "Out", 0, "").output();
     }
 };
 

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list