[SCM] calf/master: + Remove unnecessary/harmful "in place broken" flag from LADSPA implementation (in place was never, in fact, broken)

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


The following commit has been merged in the master branch:
commit df3aa8fd06fbd96125bb9b009864717ce961bd99
Author: kfoltman <kfoltman at 78b06b96-2940-0410-b7fc-879d825d01d8>
Date:   Wed Dec 19 20:02:09 2007 +0000

    + Remove unnecessary/harmful "in place broken" flag from LADSPA implementation (in place was never, in fact, broken)
    
    
    
    git-svn-id: https://calf.svn.sourceforge.net/svnroot/calf/trunk@30 78b06b96-2940-0410-b7fc-879d825d01d8

diff --git a/src/calf/giface.h b/src/calf/giface.h
index f7d94c8..69f263a 100644
--- a/src/calf/giface.h
+++ b/src/calf/giface.h
@@ -154,7 +154,7 @@ struct ladspa_wrapper
         descriptor.Name = i.name;
         descriptor.Maker = i.maker;
         descriptor.Copyright = i.copyright;
-        descriptor.Properties = LADSPA_PROPERTY_INPLACE_BROKEN | (Module::rt_capable ? LADSPA_PROPERTY_HARD_RT_CAPABLE : 0);
+        descriptor.Properties = Module::rt_capable ? LADSPA_PROPERTY_HARD_RT_CAPABLE : 0;
         descriptor.PortCount = ins + outs + params;
         descriptor.PortNames = Module::param_names;
         descriptor.PortDescriptors = new LADSPA_PortDescriptor[descriptor.PortCount];

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list