Hey, I was looking for a good MP3 or OGG decoder that use the BSD license or public domain and that is also light-weight (something that comes with sources without the need of platform specific configuration).

link|improve this question
feedback

5 Answers

up vote 0 down vote accepted

You're not likely to find one for mp3 as there are a handful of licensing issues.

OGG is simply a container format that can hold audio, video, and more. Perhaps you mean ogg vorbis. Check out stb_vorbis. It's a free, public-domain C vorbis codec.

link|improve this answer
Can it decode to 16-bit stereo PCM? If so, tell me what function to use. – user187418 Oct 19 '10 at 18:03
1  
@Tamir: I linked the site. I am not familiar with this product. You'll have to look at the information. – JoshD Oct 19 '10 at 18:25
Why would libmad which is GPL not be persecuted into extinction, but a BSD licensed version be? – Amigable Clark Kant Nov 14 '11 at 14:43
feedback

Like this one?

link|improve this answer
feedback

The Xiph.org libvorbis is available in pretty much every distro, and satisfies your requirement for a BSD-3-Clause license. "Light" is always relative... Also from Xiph.org available is libtremor, a integer-only vorbis decoder.

link|improve this answer
feedback

As other answers have mentioned, there are Vorbis decoders. The Fluendo MP3 decoder is MIT (simplified BSD) licensed.

link|improve this answer
feedback

I'm surprised nobody's mentioned LAME yet.

link|improve this answer
Probably because it's GPL + LGPL. And the decoder part is specifically GPL. – Amigable Clark Kant Feb 23 at 14:16
feedback

Your Answer

 
or
required, but never shown