[LAU] Sanity check needed: Fons's Auto Wah on 64-bit system and CPU usage?
fons at kokkinizita.net
fons at kokkinizita.net
Fri Jan 15 06:06:11 EST 2010
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
More information about the Linux-audio-user
mailing list