On Fri, Jan 15, 2010 at 01:27:52AM -0800, Ken Restivo wrote:
I'm just shaking my head over here. I have no
idea what is going on.
One thing you could try is this:
void Ladspa_Autowah::runproc (unsigned long len, bool add)
{
+ memcpy (_port [A_OUT], _port [A_INP], len * sizeof (float));
+ return;
int i, k;
float *inp = _port [A_INP];
float *out = _port [A_OUT];
...
}
This will just copy the input to the output. If this gives
non-trivial CPU load, something else (outside this plugin)
is going wrong.
Ciao,
--
FA