Can someone give me a suggestion or an example of how I will scroll through the CAF (Core Audio Format) file samples? Like taking the first 1000 samples and changing them to 0?
Sort of:
for(int i=0; i < numberOfSamples; i++) { cafFile.sample[i] = methodThatUsesSampleValue(cafFile.sample[i]); }
Keep in mind:
- I do not need to do this live. Buffers etc. Not required.
- I would like to do this in C, C ++ or Objective-C.
- I would like to use the code on the iOS platform.
Any help appreciated!
source share