I'm looking for a way to decode AAC natively to PCM on Android. The decoder source code is at http://android.git.kernel.org/?p=platform/external/opencore.git;a=tree;f=codecs_v2/audio/aac/dec;hb=HEAD, but I'm not familiar with NDK at all.

1) There's no way of doing this directly using the Android SDK, but can this be done via the NDK?

2) I would especially be interested in a simple way of accessing the decoder from SDK, with a short "bridge" through the NDK. Is this feasible?

3) Would such a solution work all Android versions (1.5-2.2)?

4) I guess I could use http://code.google.com/p/aacplayer-android/ instead, but it looks like this implementation is fairly CPU intensive. Does anyone have experiences with this?

link|improve this question

66% accept rate
1  
regarding option 4, on my moto droid 1 it will only play the AACP stream for a few seconds then starts skipping. On devices with a faster CPU it seems to play OK. – Anthony Webb Dec 14 '10 at 5:56
feedback

2 Answers

One thing you may look into is the FFMpeg stuff, it is GPL and TuneIn radio posted their mods here: http://radiotime.com/mobile/android#/support/open-source

link|improve this answer
feedback

Not sure what the policy is here for answering really old questions but what is working well for me is using OpenSL with the NDK; it comes built in and in fact the NDK comes with an example "native-audio" that demonstrates what you need.

link|improve this answer
I've looked for this... couldn't seem to find anything about how to decode an AAC stream using the NDK. Have you got more info? – bugfixr Mar 24 at 20:29
feedback

Your Answer

 
or
required, but never shown

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