2006-01-20 15:34:02 +00:00
|
|
|
//
|
|
|
|
// OutputCoreAudio.h
|
|
|
|
// 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>
|
|
|
|
|
|
|
|
@interface OutputCoreAudio : NSObject {
|
|
|
|
id outputController;
|
|
|
|
|
|
|
|
AudioUnit outputUnit;
|
|
|
|
AURenderCallbackStruct renderCallback;
|
|
|
|
AudioStreamBasicDescription deviceFormat; // info about the default device
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)initWithController:(id)c;
|
|
|
|
|
|
|
|
- (BOOL)setup;
|
|
|
|
- (void)start;
|
|
|
|
|
|
|
|
- (void)setVolume:(double) v;
|
|
|
|
|
|
|
|
@end
|