cog/Audio/Chain/InputNode.m

175 lines
3.3 KiB
Matlab
Raw Normal View History

2006-01-20 15:34:02 +00:00
//
// InputNode.m
2006-01-20 15:34:02 +00:00
// Cog
//
// Created by Vincent Spader on 8/2/05.
// Copyright 2005 Vincent Spader. All rights reserved.
2006-01-20 15:34:02 +00:00
//
#import "InputNode.h"
#import "BufferChain.h"
#import "Plugin.h"
#import "CoreAudioUtils.h"
2006-01-20 15:34:02 +00:00
@implementation InputNode
2007-10-14 18:12:15 +00:00
- (BOOL)openWithSource:(id<CogSource>)source
2006-01-20 15:34:02 +00:00
{
2007-10-14 18:12:15 +00:00
decoder = [AudioDecoder audioDecoderForSource:source];
[decoder retain];
if (decoder == nil)
2006-04-13 02:51:22 +00:00
return NO;
[self registerObservers];
if (![decoder open:source])
{
NSLog(@"Couldn't open decoder...");
return NO;
}
shouldContinue = YES;
2006-04-02 20:03:12 +00:00
shouldSeek = NO;
2006-04-13 02:51:22 +00:00
return YES;
2006-01-20 15:34:02 +00:00
}
- (BOOL)openWithDecoder:(id<CogDecoder>) d
{
NSLog(@"Opening with old decoder: %@", d);
decoder = d;
[decoder retain];
[self registerObservers];
shouldContinue = YES;
shouldSeek = NO;
NSLog(@"DONES: %@", decoder);
return YES;
}
- (void)registerObservers
{
NSLog(@"REGISTERING OBSERVERS");
[decoder addObserver:self
forKeyPath:@"properties"
options:(NSKeyValueObservingOptionNew)
context:NULL];
[decoder addObserver:self
forKeyPath:@"metadata"
options:(NSKeyValueObservingOptionNew)
context:NULL];
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
NSLog(@"SOMETHING CHANGED!");
if ([keyPath isEqual:@"properties"]) {
//Setup converter!
//Inform something of properties change
[controller inputFormatDidChange: propertiesToASBD([decoder properties])];
}
else if ([keyPath isEqual:@"metadata"]) {
//Inform something of metadata change
}
}
2006-01-20 15:34:02 +00:00
- (void)process
{
int amountRead = 0, amountInBuffer = 0;
2007-03-03 21:13:25 +00:00
void *inputBuffer = malloc(CHUNK_SIZE);
2006-01-20 15:34:02 +00:00
BOOL shouldClose = YES;
while ([self shouldContinue] == YES && [self endOfStream] == NO)
2006-01-20 15:34:02 +00:00
{
2006-04-02 20:03:12 +00:00
if (shouldSeek == YES)
{
NSLog(@"SEEKING!");
[decoder seekToTime:seekTime];
2006-04-02 20:03:12 +00:00
shouldSeek = NO;
NSLog(@"Seeked! Resetting Buffer");
2007-05-26 22:13:11 +00:00
[self resetBuffer];
NSLog(@"Reset buffer!");
2007-05-26 22:13:11 +00:00
initialBufferFilled = NO;
2006-04-02 20:03:12 +00:00
}
if (amountInBuffer < CHUNK_SIZE) {
amountRead = [decoder fillBuffer:((char *)inputBuffer) + amountInBuffer ofSize:CHUNK_SIZE - amountInBuffer];
amountInBuffer += amountRead;
2006-04-02 20:03:12 +00:00
if (amountRead <= 0)
{
if (initialBufferFilled == NO) {
[controller initialBufferFilled:self];
}
NSLog(@"End of stream? %@", [self properties]);
endOfStream = YES;
shouldClose = [controller endOfInputReached]; //Lets us know if we should keep going or not (occassionally, for track changes within a file)
NSLog(@"closing? is %i", shouldClose);
break;
2007-05-16 23:07:00 +00:00
}
[self writeData:inputBuffer amount:amountInBuffer];
amountInBuffer = 0;
2006-01-20 15:34:02 +00:00
}
}
if (shouldClose)
[decoder close];
2006-05-07 13:19:23 +00:00
2007-03-03 21:13:25 +00:00
free(inputBuffer);
2006-01-20 15:34:02 +00:00
}
2006-04-02 20:03:12 +00:00
- (void)seek:(double)time
{
seekTime = time;
shouldSeek = YES;
NSLog(@"Should seek!");
2007-05-26 22:13:11 +00:00
[semaphore signal];
2006-04-02 20:03:12 +00:00
}
- (BOOL)setTrack:(NSURL *)track
{
if ([decoder respondsToSelector:@selector(setTrack:)] && [decoder setTrack:track]) {
NSLog(@"SET TRACK!");
return YES;
}
return NO;
}
- (void)dealloc
{
2007-10-13 07:09:46 +00:00
NSLog(@"Input Node dealloc");
[decoder removeObserver:self forKeyPath:@"properties"];
[decoder removeObserver:self forKeyPath:@"metadata"];
[decoder release];
[super dealloc];
}
- (NSDictionary *) properties
2006-01-20 15:34:02 +00:00
{
return [decoder properties];
2006-01-20 15:34:02 +00:00
}
- (id<CogDecoder>) decoder
{
return decoder;
}
2006-01-20 15:34:02 +00:00
@end