| Hi,
I'm seeing some difference in the code for pconvolve in Istvan's
version, which I have no idea what they do. If they're not realted to
the recent problem with pconvolve, and there's no need to add them,
please disregard.
at Opcodes/ugens9.c
line 519:
if (dest == (MYFLT*)p->convBuf.endp)
Istvan's:
if (dest == (MYFLT*) ((char*) p->convBuf.auxp +
p->convBuf.size))
line 544:
if (outp >= (MYFLT *)p->output.endp)
Istvan's:
if (outp >= (MYFLT *) ((char*) p->output.auxp +
p->output.size))
line 550:
if (p->outWrite >= (MYFLT *)p->output.endp)
Istvan's:
if (p->outWrite >= (MYFLT *) ((char*) p->output.auxp +
p->output.size))
line 589:
if (p->outRead == p->output.endp)
Istvan's:
if (p->outRead == (MYFLT*) ((char*) p->output.auxp +
p->output.size))
Cheers,
Andres
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net |