in my iPad app I have the following code that reads a file to

AudioFileOpenURL ((CFURLRef) audioURL, kAudioFileReadPermission, 0, &audioFileUserID);
AudioFileGetPropertyInfo(audioFileUserID, kAudioFilePropertyDataFormat, &dataSize, 0);
AudioFileGetProperty(audioFileUserID, kAudioFilePropertyAudioDataPacketCount, &dataSize, &packetCount);
UInt32 *audioData = (UInt32 *)malloc(packetCount * 1000);
AudioFileReadPackets (audioFileUserID, false, &numBytesRead, NULL, 0, &packetsRead, audioData);

// Padd the audioData with zeros until it's 2^n large
for (int i = 0; i < myFFT.dataLength; i++)
    fft[i] = (i < r) ? audioData[i] : 0;

Everything works properly up until the for loop. There I get bad_access_error. The purpose of the loop is to copy the audio data into an array on which Ooura performs FFT.

Why can't I iterate over the copied audio data? Thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.