[Clam-devel] ladspa-related commit
David García Garzón
dgarcia at iua.upf.edu
Tue Feb 20 04:09:59 PST 2007
Ups, already did that fix at home but i did not commit. Sorry.
Indeed as told here[1], the LADSPA_PATH should be a colon separated list of
paths.
http://www.ladspa.org/ladspa_sdk/shared_plugins.html
On Tuesday 20 February 2007 12:23:00 Pau Arumi wrote:
> this is mainly for andreas,
>
> i've added a new class in NetworkEditor/src/processing called
> dummyladspa, which can be instantiated using the processing tree
> (see attached pict). the class now is just a copy of random, but is
> ment to be totally changed, to have here the first working
> processing->plugin wrapper.
>
> also i've commited a ladspa-related fix in processingtree.cxx (207):
> when LADSPA_PATH was undefined we where initializing a std::string
> which a void char*. the (commited) change
>
> - std::string ladspaPath( getenv("LADSPA_PATH") );
> + char* path = getenv("LADSPA_PATH");
> + std::string ladspaPath = path? path : "";
>
> pau
More information about the clam-devel
mailing list