Taking a look at ugens9.cpp in Istvan's work, I'm seeing this as what changed between the latest and the previous version: FROM: /* make sure the partition size is nonzero and a power of 2 */ if (*p->partitionSize <= 0) *p->partitionSize = csound->oparms.outbufsamps; p->Hlen = 1; while (p->Hlen < *p->partitionSize) p->Hlen <<= 1; p->Hlenpadded = 2*p->Hlen; TO: /* make sure the partition size is nonzero and a power of 2 */ long partitionSize = MYFLT2LRND(*p->partitionSize); if (partitionSize <= 0L) partitionSize = csound->oparms.outbufsamps / csound->nchnls; for (p->Hlen = 1; p->Hlen < partitionSize; p->Hlen <<= 1) ; p->Hlenpadded = 2 * p->Hlen; This is in the pconvset function. steven On 8/11/06, Victor Lazzarini wrote: > We can leave the pconvolve changes out, if we cannot do > it by Sunday, so that tagging can go ahead. Could you remove > the 5.03 packages and hide the release that is out at the moment > in sourceforge? > > Also, how do we set/unset the 'BETA' token when building csound, > so that the startup messages do not print 'beta version'? > > Victor > > At 12:18 11/08/2006, you wrote: > >Well, when i asked that question I got little response either. > >Yes we are still shooting for 15 Aug (The Assumption). I have just > >fixed a couple of things in the tutorial. > > We need to consider tracking Istvan's change to pconvole -- I looked > >but I could not find what he changed, apart from the number of channel > >stuff > > The tutorial is still lacking Linux stuff. Not sure if I will have > >time to do it myself... > > > >==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 > >https://lists.sourceforge.net/lists/listinfo/csound-devel > > Victor Lazzarini > Music Technology Laboratory > Music Department > National University of Ireland, Maynooth > > > ------------------------------------------------------------------------- > 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 > https://lists.sourceforge.net/lists/listinfo/csound-devel > ------------------------------------------------------------------------- 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