2006-01-20 15:34:02 +00:00
|
|
|
//
|
2006-04-02 15:44:08 +00:00
|
|
|
// ConverterNode.h
|
2006-01-20 15:34:02 +00:00
|
|
|
// Cog
|
|
|
|
//
|
2006-09-04 18:46:18 +00:00
|
|
|
// Created by Vincent Spader on 8/2/05.
|
|
|
|
// Copyright 2005 Vincent Spader. All rights reserved.
|
2006-01-20 15:34:02 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
#import <CoreAudio/AudioHardware.h>
|
|
|
|
#import <AudioToolbox/AudioToolbox.h>
|
|
|
|
#import <AudioUnit/AudioUnit.h>
|
2007-03-03 17:19:37 +00:00
|
|
|
@interface Converter : NSObject
|
|
|
|
{
|
2006-01-20 15:34:02 +00:00
|
|
|
AudioConverterRef converter;
|
2007-03-03 17:19:37 +00:00
|
|
|
|
2007-03-03 18:25:10 +00:00
|
|
|
void *outputBuffer;
|
2007-05-16 01:06:23 +00:00
|
|
|
int outputBufferSize;
|
2007-03-03 18:25:10 +00:00
|
|
|
|
|
|
|
//Temporary for callback use
|
2007-03-03 21:13:25 +00:00
|
|
|
void *inputBuffer;
|
2007-03-03 17:19:37 +00:00
|
|
|
int inputBufferSize;
|
2007-03-03 22:55:26 +00:00
|
|
|
BOOL needsReset;
|
2007-03-03 18:25:10 +00:00
|
|
|
//end
|
|
|
|
|
|
|
|
int outputSize;
|
2006-01-20 15:34:02 +00:00
|
|
|
|
|
|
|
AudioStreamBasicDescription inputFormat;
|
|
|
|
AudioStreamBasicDescription outputFormat;
|
|
|
|
}
|
|
|
|
|
2007-03-03 18:25:10 +00:00
|
|
|
- (void *)outputBuffer;
|
2007-05-16 01:06:23 +00:00
|
|
|
- (int)outputBufferSize;
|
2007-03-03 17:19:37 +00:00
|
|
|
|
2006-01-20 15:34:02 +00:00
|
|
|
- (void)setupWithInputFormat:(AudioStreamBasicDescription)inputFormat outputFormat:(AudioStreamBasicDescription)outputFormat;
|
|
|
|
- (void)cleanUp;
|
|
|
|
|
2007-05-26 22:13:11 +00:00
|
|
|
- (void)reset;
|
|
|
|
|
2007-05-16 01:06:23 +00:00
|
|
|
//Returns the amount actually read from input
|
2007-03-03 21:13:25 +00:00
|
|
|
- (int)convert:(void *)input amount:(int)inputSize;
|
2006-01-20 15:34:02 +00:00
|
|
|
|
|
|
|
@end
|