Csound Csound-dev Csound-tekno Search About

[Cs-dev] pconvolve

Date2006-08-22 23:24
FromAndres Cabrera
Subject[Cs-dev] pconvolve
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

Date2006-08-23 09:07
Fromjpff@codemist.co.uk
SubjectRe: [Cs-dev] pconvolve
I saw those changes and could not think of any difference unless
Istvan's revised code does not maintain the endp field?  I intend
doing nothing unless someone else can see a difference.
==John ffitch

-------------------------------------------------------------------------
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