Re: [Cs-dev] Release time
Date | 2007-06-01 10:25 |
From | Jonathan Murphy |
Subject | Re: [Cs-dev] Release time |
Vectorial opcodes (see recent post to users list)? In terms of the goals of vtablek I'm probably misunderstanding something, but if I can't assign a value to kfn then the opcode is not working as described in the manual. Jonathan. jpff |
Date | 2007-06-01 10:28 |
From | jpff |
Subject | [Cs-dev] Release time |
As far as I can tell we now are down to the ATS problems and Anthony finishing his thing. Anything else? When to aim the release? ==John ffitch ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2007-06-01 10:42 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] Release time |
ATS is fixed as far as it can be (see my earlier e-mail). At 10:28 01/06/2007, you wrote: >As far as I can tell we now are down to the ATS problems and Anthony >finishing his thing. Anything else? When to aim the release? >==John ffitch > >------------------------------------------------------------------------- >This SF.net email is sponsored by DB2 Express >Download DB2 Express C - the FREE version of DB2 express and take >control of your XML. No limits. Just data. Click to get it now. >http://sourceforge.net/powerbar/db2/ >_______________________________________________ >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 ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2007-06-01 15:59 |
From | Anthony Kozar |
Subject | Re: [Cs-dev] Release time |
Thanks. I got some important changes (and bug fixes) in last night, and I am planning to do as much as I can to finish tonight. Does tagging the sources on Monday sound OK? Anthony jpff wrote on 6/1/07 5:28 AM: > As far as I can tell we now are down to the ATS problems and Anthony > finishing his thing. Anything else? When to aim the release? > ==John ffitch ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2007-06-01 16:10 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] Release time |
It's OK with me. I am done with my additions/fixes/changes. However I will only be able to build binaries on Wednesday. Victor At 15:59 01/06/2007, you wrote: >Thanks. I got some important changes (and bug fixes) in last night, and I >am planning to do as much as I can to finish tonight. Does tagging the >sources on Monday sound OK? > >Anthony > >jpff wrote on 6/1/07 5:28 AM: > > > As far as I can tell we now are down to the ATS problems and Anthony > > finishing his thing. Anything else? When to aim the release? > > ==John ffitch > > >------------------------------------------------------------------------- >This SF.net email is sponsored by DB2 Express >Download DB2 Express C - the FREE version of DB2 express and take >control of your XML. No limits. Just data. Click to get it now. >http://sourceforge.net/powerbar/db2/ >_______________________________________________ >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 ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2007-06-01 21:45 |
From | jpff |
Subject | Re: [Cs-dev] Release time |
How about tagging late Monday or early Tuesday; release Wednesday or Thursday? I have been tinkering with suppressing messages. Must be better things to do! ==John ffitch ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2007-06-04 01:37 |
From | Anthony Kozar |
Subject | Re: [Cs-dev] Release time |
jpff wrote on 6/1/07 4:45 PM: > How about tagging late Monday or early Tuesday; release Wednesday or > Thursday? > I have been tinkering with suppressing messages. Must be better > things to do! This sounds fine with me. The FileOpen callback feature is now reasonably complete. The minor utilities (hetro export, etc.) do not use it yet, but this is not a big deal. And there are two implementation issues that give non-ideal results. (One is that there is no way to deterine a correct file type code when a file is opened with the fiopen opcode since it is not yet known how the file will be used). But, in general, it works well and greatly improves the ability of Csound on MacOS to manage file metadata. I discovered one small bug in one of Csound's macros for dealing with libsndfile format codes that I have not yet fixed. The file soundio.h defines the following macro: #define SF2TYPE(x) ((int) (x) >> 16) This assumes that the top 16 bits of libsndfile's format values describe the soundfile header. However, the top 4 bits can include other information like the endianness of the file (if different from the format's "native" endianness). This is causing a minor problem for me when reading Ircam files because libsndfile returns 0x200A in the top 16 bits while Csound only recognizes 0x000A as being an Ircam file. *** I haven't changed this yet, because I am not entirely sure if there are not some other hidden assumptions here. The macro should probably be defined this way instead: #define SF2TYPE(x) ((int) (x & SF_FORMAT_TYPEMASK) >> 16) Finally, there is an issue on MacOS 9 that prevents plugin libraries from being loaded by more than one instance of Csound running simultaneously in the same process. I will try to fix this before the code is tagged tomorrow, but it can wait if I cannot find a solution by then. Thanks for allowing me to finish the FileOpen stuff. Anthony *** I am not sure why libsndfile returns this code on MacOS 9 for a file that was created by Csound on this computer. My understanding is that Ircam files are supposed to be the same endianness as the CPU, so I would think that SF_ENDIAN_FILE should be returned, not SF_ENDIAN_BIG when this file is reopened by Csound on the same machine. But then, I cannot playback any Ircam files created with Csound 5 using any Mac software that is supposed to understand them, so maybe Csound (or libsndfile) is doing something incorrect when writing the files too ... ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2007-06-04 07:40 |
From | jpff |
Subject | Re: [Cs-dev] Release time |
I think the change to #define SF2TYPE(x) ((int) (x & SF_FORMAT_TYPEMASK) >> 16) is safe and correct. I am testing as I type ==John ffitch ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |