124 lines
3.3 KiB
Matlab
124 lines
3.3 KiB
Matlab
|
//
|
||
|
// ConverterNode.m
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 8/2/05.
|
||
|
// Copyright 2005 Vincent Spader. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "Converter.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 Converter
|
||
|
|
||
|
//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)
|
||
|
{
|
||
|
Converter *converter = (Converter *)inUserData;
|
||
|
OSStatus err = noErr;
|
||
|
|
||
|
ioData->mBuffers[0].mData = converter->inputBuffer;
|
||
|
ioData->mBuffers[0].mDataByteSize = converter->inputBufferSize;
|
||
|
ioData->mBuffers[0].mNumberChannels = (converter->inputFormat.mChannelsPerFrame);
|
||
|
ioData->mNumberBuffers = 1;
|
||
|
|
||
|
return err;
|
||
|
}
|
||
|
|
||
|
- (int)convert:(void *)input amount:(int)inputSize
|
||
|
{
|
||
|
AudioBufferList ioData;
|
||
|
UInt32 ioNumberFrames;
|
||
|
int outputSize;
|
||
|
OSStatus err;
|
||
|
|
||
|
outputSize = inputSize;
|
||
|
UInt32 dataSize = sizeof(outputSize);
|
||
|
err = AudioConverterGetProperty(converter,
|
||
|
kAudioConverterPropertyCalculateOutputBufferSize,
|
||
|
&dataSize,
|
||
|
(void*)&outputSize);
|
||
|
|
||
|
if (buffer != NULL)
|
||
|
free(buffer);
|
||
|
buffer = malloc(outputSize);
|
||
|
|
||
|
ioNumberFrames = outputSize/outputFormat.mBytesPerFrame;
|
||
|
ioData.mBuffers[0].mData = buffer;
|
||
|
ioData.mBuffers[0].mDataByteSize = outputSize;
|
||
|
ioData.mBuffers[0].mNumberChannels = outputFormat.mChannelsPerFrame;
|
||
|
ioData.mNumberBuffers = 1;
|
||
|
|
||
|
inputBuffer = input;
|
||
|
inputBufferSize = inputSize;
|
||
|
|
||
|
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:input amount:inputSize];
|
||
|
}
|
||
|
|
||
|
return ioData.mBuffers[0].mDataByteSize;
|
||
|
}
|
||
|
|
||
|
- (void)setupWithInputFormat:(AudioStreamBasicDescription)inf outputFormat:(AudioStreamBasicDescription)outf
|
||
|
{
|
||
|
NSLog(@"CREATING THE CONVERTER");
|
||
|
//Make the converter
|
||
|
OSStatus stat = noErr;
|
||
|
|
||
|
inputFormat = inf;
|
||
|
outputFormat = outf;
|
||
|
|
||
|
stat = AudioConverterNew ( &inputFormat, &outputFormat, &converter);
|
||
|
if (stat != noErr)
|
||
|
{
|
||
|
NSLog(@"Error creating converter %i", stat);
|
||
|
}
|
||
|
|
||
|
if (inputFormat.mChannelsPerFrame == 1)
|
||
|
{
|
||
|
SInt32 channelMap[2] = { 0, 0 };
|
||
|
|
||
|
stat = AudioConverterSetProperty(converter,kAudioConverterChannelMap,sizeof(channelMap),channelMap);
|
||
|
if (stat != noErr)
|
||
|
{
|
||
|
NSLog(@"Error mapping channels %i", stat);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
NSLog(@"Converter setup!");
|
||
|
|
||
|
PrintStreamDesc(&inf);
|
||
|
PrintStreamDesc(&outf);
|
||
|
}
|
||
|
|
||
|
- (void *)buffer
|
||
|
{
|
||
|
return buffer;
|
||
|
}
|
||
|
|
||
|
- (void)cleanUp
|
||
|
{
|
||
|
AudioConverterDispose(converter);
|
||
|
}
|
||
|
|
||
|
@end
|