CoreAudio based app stops playing if any UI is added in app

47 Views Asked by At

I have a CoreAudio based player that streams remote mp3s.

It uses NSURLConnection to retrieve the mp3 data -> uses AudioConverter to convert the stream into PCM -> and feeds the stream into an AUGraph to play audio.

The player works completely fine in my demo app(it only contains a play button), but when i add the player to another project, but when coupled with a project that already makes networking calls, and updates UI, the player fails to play audio past a few seconds.

Am possibly experiencing a threading issue? What are some preventative approaches that i can take or look into that can prevent this from happening?

1

There are 1 best solutions below

0
On

You do not mention anything in your software architecture about buffering your data between receiving it via NSURLConnection and when you send it to your player.

Data will arrive in chunks with inconsistent arrival rates.

Please see these answers I posted regarding buffering and network jitter.

Network jitter

and

Network jitter and buffering queue

In a nutshell, you can receive data and immediately send it to your player because the next data may not arrive in time.

You don't mention the rate that the mp3 file is delivered. If it is delivered very quickly over a fast connection... are you buffering all of the data received or is it getting lost somewhere in your app? There is a chance that your problem is that you are receiving way too much data too fast and not properly buffering up the data received.