Cog/Sound/BufferChain.h

38 lines
708 B
C
Raw Normal View History

2006-01-20 12:34:02 -03:00
//
// BufferChain.h
2006-01-20 12:34:02 -03:00
// CogNew
//
// Created by Zaphod Beeblebrox on 1/4/06.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "InputNode.h"
#import "ConverterNode.h"
#import "SoundController.h"
2006-04-12 22:51:22 -04:00
#import "PlaylistEntry.h"
2006-01-20 12:34:02 -03:00
@interface BufferChain : NSObject {
InputNode *inputNode;
ConverterNode *converterNode;
2006-04-12 22:51:22 -04:00
PlaylistEntry *playlistEntry;
2006-01-20 12:34:02 -03:00
NSArray *effects; //Not needed as of now, but for EFFECTS PLUGINS OF THE FUTURE!
id finalNode; //Final buffer in the chain.
id soundController;
}
- (id)initWithController:(id)c;
- (void)buildChain;
2006-04-12 22:51:22 -04:00
- (BOOL)open:(PlaylistEntry *)pe;
2006-04-02 16:03:12 -04:00
- (void)seek:(double)time;
2006-01-20 12:34:02 -03:00
- (void)launchThreads;
- (id)finalNode;
@end