How bad is Android SoundPool? What alternative to use?

AndroidAudioSoundpool

Android Problem Overview


I was looking at Android's SoundPool as a mechanism to implement sound effects in my generic game development library. It seemed ideal.

But a little bit of research indicates that there https://stackoverflow.com/questions/4547551/issue-with-soundpool-and-samsung-galaxy-s">all</a> https://stackoverflow.com/questions/1394694/why-is-my-soundpool-mute">kinds</a> https://stackoverflow.com/questions/5571445/android-soundpool-sometimes-plays-sound-twice-when-loop-param-is-set-to-0">of</a> https://stackoverflow.com/questions/2717040/android-xperia-x10-soundpool">bugs</a> in SoundPool. Are the bugs in SoundPool still relevant?

Because I'm developing a library, any bugs in SoundPool become bugs in my library, and I want to insulate my users from that.

So my question is basically: what API should I use for audio?

Using AudioTrack and writing my own mixer is not out of the question. But obviously it would be preferable to avoid doing that. And is there any API to provide decoding for me?

I need to be able to play a reasonable number of simultaneous sound effects (at least 16, let's say), and have even more open. Sounds need to start playing with low latency. WAV files need to be supported (MP3/Ogg is unimportant). Sound effects need to support seamless looping and dynamic, individual volume adjustment. The Android app lifecycle needs to be properly supported.

I have heard there is a 1MB limit somewhere for SoundPool, this is probably acceptable for each individual sound effect but not for all buffers/sounds. Can someone tell me exactly what the limit is on?

Finally, I need to be able to play background music as well, in compressed formats, with low CPU load. I assume MediaPlayer is ideal for this. Can it be used in parallel with another API?

I know a few people have been using MediaPlayer to fill in for SoundPool. But does it support the features that I need?

Are there any other audio APIs I've missed?

Android Solutions


Solution 1 - Android

Just to add some more recent feedback on this issue. I've been using SoundPool for some time in an app with a fairly large user base for key press sounds. Our use case:

  • Must be played immediately
  • Up to 3+ sounds in parallel
  • We make use of the setRate across it's full range [0.5f-2.0f]

I've now experienced two major device specific issue and have decided to cut my losses and switch away from SoundPool

  • A large number of 4.4 LG devices (mostly the LG G2/G3 line) were having a native crash with their implementation of SoundPool. This was fixed in an update (eventually) but we still have a lot of users with un-upgraded devices
  • Sony Xperia devices currently have all sorts of issue with SoundPool as reported by others. In my case, I've discovered that if you use setRate with rate > 1.0f the SoundPool with start throwing exceptions until your app quits (and burn through a bunch of battery in the process).

TL;DR; I no longer think it's worth the danger/hassle of debugging SoundPool

Solution 2 - Android

Stick with OGG files and SoundPool will do you just fine. It's the nature of the multi-platform beast that is Android that there WILL be hardware configurations that will not work with every significant program, no matter how diligently the programmers try.

If this is a large and well-funded project, add to the funding one of each major phone for testing. It's actually much cheaper than the programmer time spent researching and trying to guess what their performance is.

Sorry. Seems as if this isn't the answer that you were looking for. Good luck!

Solution 3 - Android

DISCLAIMER: I have a small amount of experience with MediaPlayer, and no successful experience with the other APIs I mention, and the following information is based on what I've read in the DOCs and what I've read from google searches.

You could use mediaplayer (for the background music) with other audio APIs, since MediaPlayer automatically runs on it's own thread, but I believe it has a high-ish cpu load, and I don't think it would take compressed bits very well, but I'm not too sure.

There's also JetPlayer http://developer.android.com/reference/android/media/JetPlayer.html which seems like a lot of work to use effectively, but it would work very well with playing background music, then playing other sounds as needed in the game. From what I read of the DOCs, it takes a MIDI file (I think?) and you mute and unmute tracks to make it work how you want it to.

I like AudioTrack because it gives you the ability to edit sounds at runtime by changing the frequencies of the sound, and SoundPool can do the same.

Though for your situation, AudioTrack doesn't seem like it would work well, since playing two sounds would require two threads because AudioTrack is blocking (I'm pretty sure).

And with SoundPool, I'm thinking that since you have 16 sounds, maybe take two threads with one SoundPool in each thread and apply 8 sounds to each SoundPool. I don't really know though, as I've never even tried using SoundPool.

And again, my information is not based on experience, just what it appears from what I've read, so I may be completely or maybe just slightly wrong, or heck, who knows.

And I don't really know anything about the SoundPool bugs, since I haven't researched it.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAndrew RussellView Question on Stackoverflow
Solution 1 - AndroidSparkyView Answer on Stackoverflow
Solution 2 - AndroidSMBiggsView Answer on Stackoverflow
Solution 3 - AndroidReedView Answer on Stackoverflow