I'm working on something that plays songs from the audio library and outputs them using RemoteIO. I can't use AVPlayer because I need to do some processing on the audio data. Now I'm not exactly sure what happens when I use AVAssetReader, I don't want to load the entire song into memory. It's a huge waste of memory, or what if there's a mix whose PCM data is even larger than the amount of memory there is available... I was thinking doing one call to copyNextSampleBuffer, storing it in a ring buffer, when the ring buffer gets low, make another call and load some more. I'm not exactly sure what would happen in a situation like this. Will the AVAssetReader continue reading the entire file in memory and next time, maybe a few seconds later, will it give me a CMSampleBuffer containing a way larger amount of samples than before, maybe the entire song? or will it just read another fixed amount like before. I was messing with it a bit yesterday, calling copyNextSampleBuffer in a loop, and I noticed that the sample buffers had around 2 seconds duration. Will that duration increase if I don't do things in a loop and give it more time to load stuff?
The other problem I have is that I want to be able to skip through the song, much like the iPod application. I found out that in order to do this, I need to create another AVAssetReader and set it's timeRange since it can't be changed once reading has started. So if I do what I described above, and when the user scrubbs through the song if I get rid of my AVAssetReader and create another AVAssetReader, and set the timeRange to wherever the user scrubbed to the end of the song will that be terribly low?
If I'd do something like set the timeRange to 0.5 seconds or so of samples and when my ring buffer runs low, I create another AVAssetReader with the time range set from wherever I left off before - another 0.5 samples, again, will this be terribly slow? Could I keep up playback real time?
I'd do all this by hanging on to the asset. I've noticed that the asset has a cancelLoading property. In a situation like the one I described above, once I'm done with one of the AVAssetReaders, I get some samples, and wait for my ring buffer to run low before I create another one, what does the AVAsset do meanwhile? Does it keep loading things and wasting my memory?
I also noticed this in the docs " Note, however, that AVAssetReader is not intended for use with real-time sources, and its performance is not guaranteed for real-time operations." What is considered a real-time source? What do they mean by real time operations? Is what I'm trying to do considered a real-time operation? Or a real-time source and real-time operation would be streaming something over the network, like a radio station.
Thanks in advance.