2006-01-20 15:34:02 +00:00
|
|
|
//
|
2006-04-02 15:44:08 +00:00
|
|
|
// OutputNode.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>
|
|
|
|
|
|
|
|
#import "Node.h"
|
|
|
|
#import "OutputCoreAudio.h"
|
|
|
|
|
|
|
|
@interface OutputNode : Node {
|
|
|
|
AudioStreamBasicDescription format;
|
|
|
|
|
2022-01-13 07:17:07 +00:00
|
|
|
double amountPlayed;
|
|
|
|
double sampleRatio;
|
2006-01-20 15:34:02 +00:00
|
|
|
OutputCoreAudio *output;
|
2013-10-21 05:04:09 +00:00
|
|
|
|
|
|
|
BOOL paused;
|
2022-01-15 06:46:41 +00:00
|
|
|
BOOL started;
|
2006-01-20 15:34:02 +00:00
|
|
|
}
|
|
|
|
|
2022-01-16 15:32:47 +00:00
|
|
|
- (void)beginEqualizer:(AudioUnit)eq;
|
2022-01-18 04:43:08 +00:00
|
|
|
- (void)refreshEqualizer:(AudioUnit)eq;
|
2022-01-16 15:32:47 +00:00
|
|
|
- (void)endEqualizer:(AudioUnit)eq;
|
|
|
|
|
2006-04-02 15:44:08 +00:00
|
|
|
- (double)amountPlayed;
|
|
|
|
|
2022-01-15 06:46:41 +00:00
|
|
|
- (void)incrementAmountPlayed:(long)count;
|
|
|
|
- (void)resetAmountPlayed;
|
|
|
|
|
|
|
|
- (void)endOfInputPlayed;
|
2022-01-15 10:09:26 +00:00
|
|
|
|
|
|
|
- (BOOL)chainQueueHasTracks;
|
2022-01-15 06:46:41 +00:00
|
|
|
|
|
|
|
- (double)secondsBuffered;
|
|
|
|
|
2006-01-20 15:34:02 +00:00
|
|
|
- (void)setup;
|
|
|
|
- (void)process;
|
2006-04-02 15:44:08 +00:00
|
|
|
- (void)close;
|
2006-04-02 20:03:12 +00:00
|
|
|
- (void)seek:(double)time;
|
2006-01-20 15:34:02 +00:00
|
|
|
|
|
|
|
- (int)readData:(void *)ptr amount:(int)amount;
|
|
|
|
|
|
|
|
- (void)setFormat:(AudioStreamBasicDescription *)f;
|
|
|
|
- (AudioStreamBasicDescription) format;
|
|
|
|
|
|
|
|
- (void)setVolume:(double) v;
|
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
- (void)setShouldContinue:(BOOL)s;
|
|
|
|
|
|
|
|
- (void)pause;
|
|
|
|
- (void)resume;
|
|
|
|
|
2013-10-21 05:04:09 +00:00
|
|
|
- (BOOL)isPaused;
|
|
|
|
|
2022-01-19 10:08:57 +00:00
|
|
|
- (void)sustainHDCD;
|
|
|
|
|
2006-01-20 15:34:02 +00:00
|
|
|
@end
|