Re: (try 3) wineaudiofile.acm: Initial commit

2010-03-16 Thread Alexandre Julliard
Aric Stewart writes: > Supported mp3 decoding on OSX Leopard systems. > Expandable to Tiger and other formats fairly easily. It looks like almost all of that code is duplicated from winemp3, so there doesn't seem to be much reason to make it a separate dll. -- Alexandre Julliard julli...@wineh

Re: wineaudiofile.acm: Initial commit

2010-03-13 Thread Ken Thomases
On Mar 12, 2010, at 12:12 PM, Aric Stewart wrote: > Henri Verbeet wrote: >>> +ERR("Feed Error %c%c%c%c\n", (char) (ret>> 24), >>> + (char) (ret>> 16), >>> + (char) (ret>> 8), >>> + (

Re: wineaudiofile.acm: Initial commit

2010-03-12 Thread Aric Stewart
Thanks! Henri Verbeet wrote: +ERR("Feed Error %c%c%c%c\n", (char) (ret>> 24), + (char) (ret>> 16), + (char) (ret>> 8), + (char) ret); debugstr_an((const char *)&ret, 4); may be ea

Re: wineaudiofile.acm: Initial commit

2010-03-12 Thread Henri Verbeet
Not claiming to know a whole lot about OS X or audio, but these are some general things I noticed: On 12 March 2010 16:41, Aric Stewart wrote: > +/* leopad functions */ Typo. > +static tAudioFileStreamOpen pAudioFileStreamOpen = NULL; > +static tAudioFileStreamSeek pAudioFileStreamSeek = NULL; >