QUOTE(Berki @ Sep 27 2003, 08:50 PM)
Hello!
Does anybody know a simple open source Ogg Vorbis Player? I want do understand this codec and maybe write an own one based on this great codec. Has someone tips for the understanding of this codec?
Many Thx
Berki
You could download my version of oggdec, .exe and source, from Rarewares. It is primarily a decoder, but with a very simple playback option. The code should give you a reasonable understanding of how easy it is to implement a vorbis decoder.
You will, of course need the ogg and vorbis libraries which you can obtain either from the links at vorbis.com, or xiph.org. The APIs are in vorbisfile. You can either use ov_read, or ov_read_float if you want greater flexibility of use with the decoded samples. You will find the documentation that comes with the libraries is very helpful.