views:

110

answers:

1

Hi,

is there a way to programmatically convert .caf audio files to .mp3 audio files on the iPad platform?

A: 

OSStatus AudioConverterFillComplexBuffer(

AudioConverterRef inAudioConverter,
AudioConverterComplexInputDataProc inInputDataProc,
void *inInputDataProcUserData,
UInt32 *ioOutputDataPacketSize,
AudioBufferList *outOutputData,
AudioStreamPacketDescription *outPacketDescription
);

still figuring out how to implement, but this method is meant to be used for this conversion

found in audiotoolbox -> audioConverter

pete