2007-10-03 20:23:14 +00:00
|
|
|
//
|
|
|
|
// ConverterNode.m
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Zaphod Beeblebrox on 8/2/05.
|
|
|
|
// Copyright 2005 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "ConverterNode.h"
|
|
|
|
|
|
|
|
void PrintStreamDesc (AudioStreamBasicDescription *inDesc)
|
|
|
|
{
|
|
|
|
if (!inDesc) {
|
|
|
|
printf ("Can't print a NULL desc!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
printf ("- - - - - - - - - - - - - - - - - - - -\n");
|
|
|
|
printf (" Sample Rate:%f\n", inDesc->mSampleRate);
|
|
|
|
printf (" Format ID:%s\n", (char*)&inDesc->mFormatID);
|
|
|
|
printf (" Format Flags:%lX\n", inDesc->mFormatFlags);
|
|
|
|
printf (" Bytes per Packet:%ld\n", inDesc->mBytesPerPacket);
|
|
|
|
printf (" Frames per Packet:%ld\n", inDesc->mFramesPerPacket);
|
|
|
|
printf (" Bytes per Frame:%ld\n", inDesc->mBytesPerFrame);
|
|
|
|
printf (" Channels per Frame:%ld\n", inDesc->mChannelsPerFrame);
|
|
|
|
printf (" Bits per Channel:%ld\n", inDesc->mBitsPerChannel);
|
|
|
|
printf ("- - - - - - - - - - - - - - - - - - - -\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
@implementation ConverterNode
|
|
|
|
|
|
|
|
//called from the complexfill when the audio is converted...good clean fun
|
|
|
|
static OSStatus ACInputProc(AudioConverterRef inAudioConverter, UInt32* ioNumberDataPackets, AudioBufferList* ioData, AudioStreamPacketDescription** outDataPacketDescription, void* inUserData)
|
|
|
|
{
|
|
|
|
ConverterNode *converter = (ConverterNode *)inUserData;
|
|
|
|
OSStatus err = noErr;
|
|
|
|
int amountToWrite;
|
|
|
|
int amountRead;
|
|
|
|
|
|
|
|
if ([converter shouldContinue] == NO || [converter endOfStream] == YES)
|
|
|
|
{
|
|
|
|
ioData->mBuffers[0].mDataByteSize = 0;
|
|
|
|
*ioNumberDataPackets = 0;
|
|
|
|
|
|
|
|
return noErr;
|
|
|
|
}
|
|
|
|
|
|
|
|
amountToWrite = (*ioNumberDataPackets)*(converter->inputFormat.mBytesPerPacket);
|
|
|
|
|
|
|
|
if (converter->callbackBuffer != NULL)
|
|
|
|
free(converter->callbackBuffer);
|
|
|
|
converter->callbackBuffer = malloc(amountToWrite);
|
|
|
|
|
|
|
|
amountRead = [converter readData:converter->callbackBuffer amount:amountToWrite];
|
2007-10-03 22:26:39 +00:00
|
|
|
if (amountRead == 0)
|
2007-10-03 20:23:14 +00:00
|
|
|
{
|
|
|
|
ioData->mBuffers[0].mDataByteSize = 0;
|
|
|
|
*ioNumberDataPackets = 0;
|
|
|
|
|
|
|
|
return 100; //Keep asking for data
|
|
|
|
}
|
|
|
|
|
|
|
|
ioData->mBuffers[0].mData = converter->callbackBuffer;
|
|
|
|
ioData->mBuffers[0].mDataByteSize = amountRead;
|
|
|
|
ioData->mBuffers[0].mNumberChannels = (converter->inputFormat.mChannelsPerFrame);
|
|
|
|
ioData->mNumberBuffers = 1;
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)process
|
|
|
|
{
|
|
|
|
char writeBuf[CHUNK_SIZE];
|
|
|
|
int amountConverted;
|
|
|
|
|
|
|
|
|
|
|
|
while ([self shouldContinue] == YES) //Need to watch EOS somehow....
|
|
|
|
{
|
|
|
|
amountConverted = [self convert:writeBuf amount:CHUNK_SIZE];
|
|
|
|
|
|
|
|
// NSLog(@"Amount converted %@: %i %i", self, amountConverted, [self endOfStream]);
|
|
|
|
if (amountConverted == 0 && [self endOfStream] == YES)
|
|
|
|
{
|
|
|
|
// NSLog(@"END OF STREAM FOR ZINE DINNER!!!!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[self writeData:writeBuf amount:amountConverted];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (int)convert:(void *)dest amount:(int)amount
|
|
|
|
{
|
|
|
|
AudioBufferList ioData;
|
|
|
|
UInt32 ioNumberFrames;
|
|
|
|
OSStatus err;
|
|
|
|
|
|
|
|
ioNumberFrames = amount/outputFormat.mBytesPerFrame;
|
|
|
|
ioData.mBuffers[0].mData = dest;
|
|
|
|
ioData.mBuffers[0].mDataByteSize = amount;
|
|
|
|
ioData.mBuffers[0].mNumberChannels = outputFormat.mChannelsPerFrame;
|
|
|
|
ioData.mNumberBuffers = 1;
|
|
|
|
|
|
|
|
err = AudioConverterFillComplexBuffer(converter, ACInputProc, self, &ioNumberFrames, &ioData, NULL);
|
|
|
|
if (err == kAudioConverterErr_InvalidInputSize) //It returns insz at EOS at times...so run it again to make sure all data is converted
|
|
|
|
{
|
|
|
|
return [self convert:dest amount:amount];
|
|
|
|
}
|
|
|
|
|
|
|
|
return ioData.mBuffers[0].mDataByteSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)setupWithInputFormat:(AudioStreamBasicDescription)inf outputFormat:(AudioStreamBasicDescription)outf
|
|
|
|
{
|
|
|
|
//Make the converter
|
|
|
|
OSStatus stat = noErr;
|
|
|
|
|
|
|
|
inputFormat = inf;
|
|
|
|
outputFormat = outf;
|
|
|
|
|
|
|
|
stat = AudioConverterNew ( &inputFormat, &outputFormat, &converter);
|
|
|
|
if (stat != noErr)
|
|
|
|
{
|
|
|
|
DBLog(@"Error creating converter %i", stat);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inputFormat.mChannelsPerFrame == 1)
|
|
|
|
{
|
|
|
|
SInt32 channelMap[2] = { 0, 0 };
|
|
|
|
|
|
|
|
stat = AudioConverterSetProperty(converter,kAudioConverterChannelMap,sizeof(channelMap),channelMap);
|
|
|
|
if (stat != noErr)
|
|
|
|
{
|
|
|
|
DBLog(@"Error mapping channels %i", stat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 02:08:29 +00:00
|
|
|
PrintStreamDesc(&inf);
|
|
|
|
PrintStreamDesc(&outf);
|
|
|
|
|
2007-10-03 20:23:14 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)cleanUp
|
|
|
|
{
|
|
|
|
AudioConverterDispose(converter);
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|