vote up 1 vote down star
1

Hi,

I'm looking for software based codec library to be used in embedded application (c/c++). I'm interested in both commercial and free codec libraries as well. Any suggestion will be welcomed.

In additional if somebody have any experience with OpenSL ES and know which software/hardware solutions are compatible i will be glad to hear about.

Thanks.

Clarification:

I need to support popular codecs mp3 is a must. I'm implementing a media player reference for embedded application and can't just tell user: "hey convert all your music library to Vorbis it's much better" :)

Additional clarification:

I'm looking for mp3 codec which is mandatory, but will be glad to find more advanced library handling more codecs (more audio codecs, video, codecs etc ...)

flag

71% accept rate
Could you please give a rough estimate how capable the embedded device is. E.g. there is a difference between a Atmel Mega Microcontroller and an Intel Atom processor :-) – Nils Pipenbrinck Mar 15 at 14:02
It will have at least ARM 9 processor. – Ilya Mar 15 at 14:32
What codecs do you need? You mention MP3... is that all you want? Do you also want to support modern codecs like Vorbis/AAC/FLAC? – singpolyma Mar 15 at 21:57
mp3 is a must everything else is a nice add-on – Ilya Mar 16 at 6:27

3 Answers

vote up 1 vote down check

Disclaimer, full disclosure, etc: I currently work there as a contractor.

For one, are you interested in just decoders or full codecs (decoders+encoders)?

I guess the answer depends on your exact situation. If you're looking for a full player for your embedded platform, NXP Software could be a solution. They provide other applications as well, such as a recorder.

link|flag
Hm, i aware about NXP software even visiting them for meeting. Good point, they might have what i need. Thanks, i will renew my contacts here... – Ilya Mar 27 at 19:05
vote up 1 vote down

The Vorbis codec is open source and is a good alternative to MP3.

After taking a quick look at the OpenSL ES API, it seems there are already some codecs defined:

#define SL_AUDIOCODEC_PCM         ((SLuint32) 0x00000001)
#define SL_AUDIOCODEC_MP3         ((SLuint32) 0x00000002)
#define SL_AUDIOCODEC_AMR         ((SLuint32) 0x00000003)
#define SL_AUDIOCODEC_AMRWB       ((SLuint32) 0x00000004)
#define SL_AUDIOCODEC_AMRWBPLUS   ((SLuint32) 0x00000005)
#define SL_AUDIOCODEC_AAC         ((SLuint32) 0x00000006)
#define SL_AUDIOCODEC_WMA         ((SLuint32) 0x00000007)
#define SL_AUDIOCODEC_REAL        ((SLuint32) 0x00000008)

You probably should find out if you are limited to those.

link|flag
As far as i understand OpenSL is a framework, an interface definition not an actual codec implementation, so it's a good start but not exactly what i need. – Ilya Mar 15 at 16:17
vote up 1 vote down

Take a look at libvorbis, an open source BSD audio codec that's quite good. There is also a reference decoder for vorbis named Tremor that uses only integer arithmetic, and thus can be used on architectures without floating point.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.