I am using a SoundPool to load several sound clips into and play them back.
It is functioning 100% correctly from what I can tell. But during the .load() calls I am getting my log spammed with:
06-09 11:30:26.110: ERROR/AudioCache(23363): Heap size overflow! req size: 1050624, max size: 1048576
I am loading in 11 sound files, of those 2 are very small ~3kb and the rest are between 10kb - 15kb. Windows is reporting
Size: 114kb
Size on disk: 128kb
Am I pushing the limits of what SoundPool is capable of holding? Is there some setting I should be altering to avoid this overflow? Any guidance on how I should be setting up my audio controls would be much appreciated.