45 lines
773 B
Objective-C
45 lines
773 B
Objective-C
//
|
|
// InputNode.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 8/2/05.
|
|
// Copyright 2005 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <CoreAudio/AudioHardware.h>
|
|
#import <AudioToolbox/AudioToolbox.h>
|
|
#import <AudioUnit/AudioUnit.h>
|
|
|
|
#import "AudioDecoder.h"
|
|
#import "Node.h"
|
|
#import "Plugin.h"
|
|
|
|
@interface InputNode : Node {
|
|
id<CogDecoder> decoder;
|
|
|
|
int bytesPerSample;
|
|
int bytesPerFrame;
|
|
BOOL floatingPoint;
|
|
BOOL swapEndian;
|
|
|
|
BOOL shouldSeek;
|
|
long seekFrame;
|
|
}
|
|
|
|
- (BOOL)openWithSource:(id<CogSource>)source;
|
|
- (BOOL)openWithDecoder:(id<CogDecoder>) d;
|
|
|
|
- (void)process;
|
|
- (NSDictionary *) properties;
|
|
- (void)seek:(long)frame;
|
|
|
|
- (void)registerObservers;
|
|
|
|
- (BOOL)setTrack:(NSURL *)track;
|
|
|
|
- (id<CogDecoder>) decoder;
|
|
|
|
@end
|