I have checked in a few changes worth noting: 1. I split the file decoder into a more general 'seekable stream decoder' which, makes the file decoder just a special case of the seekable stream decoder. this is useful in situations where you are trying to add decoding support to something that has abstracted the file away. the file decoder interface is still identical, it is all backward compatible. 2. I finished the winamp 3 plugin based on the wasabi beta1 sdk. it seems to work fine on my installation but you all can try it out. it uses the new seekable stream decoder if you want to see an example of that. 3. I checked in the project builder files for building on OS X. the instructions are in the top level README. note that I have yet to add support for ogg in OS X. This is pretty much what I plan to release as 1.0.1 next week. It is passing all the tests. If you guys could it out and let me know if there are any build problems or such that would be great. Josh __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com
On Fri, Nov 09, 2001 at 11:33:17AM -0800, Josh Coalson wrote:> I have checked in a few changes worth noting: > > 1. I split the file decoder into a more general 'seekable > stream decoder' which, makes the file decoder just a special > case of the seekable stream decoder. this is useful in > situations where you are trying to add decoding support to > something that has abstracted the file away. the file > decoder interface is still identical, it is all backward > compatible.Since (I assume) this has added a new public interface, don't forget to update the libtool version before the release, from 1:0:0 to 2:0:1, to reflect this. -- - mdz
--- Matt Zimmerman <mdz@debian.org> wrote:> On Fri, Nov 09, 2001 at 11:33:17AM -0800, Josh Coalson wrote: > > > I have checked in a few changes worth noting: > > > > 1. I split the file decoder into a more general 'seekable > > stream decoder' which, makes the file decoder just a special > > case of the seekable stream decoder. this is useful in > > situations where you are trying to add decoding support to > > something that has abstracted the file away. the file > > decoder interface is still identical, it is all backward > > compatible. > > Since (I assume) this has added a new public interface, don't forget > to > update the libtool version before the release, from 1:0:0 to 2:0:1, > to > reflect this.yes, I'll be checking that in today. Matt, on a separate note, the Ogg test in configure.in is: AM_CONDITIONAL(FLaC__HAS_OGG, [test $have_ogg = xyes]) I thought it would be: AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes]) ??? Josh __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com