Cog/Sound/InputNode.h

33 lines
527 B
C
Raw Normal View History

2006-01-20 12:34:02 -03:00
//
// InputNode.h
2006-01-20 12:34:02 -03:00
// Cog
//
// Created by Vincent Spader on 8/2/05.
// Copyright 2005 Vincent Spader. All rights reserved.
2006-01-20 12:34:02 -03:00
//
#import <Cocoa/Cocoa.h>
#import <CoreAudio/AudioHardware.h>
#import <AudioToolbox/AudioToolbox.h>
#import <AudioUnit/AudioUnit.h>
#import "SoundFile.h"
#import "Node.h"
@interface InputNode : Node {
AudioStreamBasicDescription format;
SoundFile *soundFile;
2006-04-02 16:03:12 -04:00
BOOL shouldSeek;
double seekTime;
2006-01-20 12:34:02 -03:00
}
- (void)process;
- (AudioStreamBasicDescription) format;
2006-04-02 16:03:12 -04:00
- (void)seek:(double)time;
2006-01-20 12:34:02 -03:00
@end