2006-01-20 15:34:02 +00:00
|
|
|
//
|
2006-04-02 15:44:08 +00:00
|
|
|
// InputNode.m
|
2006-01-20 15:34:02 +00:00
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Zaphod Beeblebrox on 8/2/05.
|
|
|
|
// Copyright 2005 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "InputNode.h"
|
|
|
|
|
|
|
|
|
|
|
|
@implementation InputNode
|
|
|
|
|
|
|
|
- (void)open:(NSString *)filename
|
|
|
|
{
|
|
|
|
soundFile = [SoundFile open:filename];
|
|
|
|
|
|
|
|
[soundFile getFormat:&format];
|
|
|
|
|
2006-04-02 15:44:08 +00:00
|
|
|
shouldContinue = YES;
|
2006-04-02 20:03:12 +00:00
|
|
|
shouldSeek = NO;
|
2006-01-20 15:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)process
|
|
|
|
{
|
|
|
|
const int chunk_size = CHUNK_SIZE;
|
2006-04-02 20:03:12 +00:00
|
|
|
char *buf;
|
2006-01-20 15:34:02 +00:00
|
|
|
int amountRead;
|
|
|
|
|
|
|
|
DBLog(@"Playing file.\n");
|
2006-04-02 20:03:12 +00:00
|
|
|
buf = malloc(chunk_size);
|
2006-01-20 15:34:02 +00:00
|
|
|
|
2006-04-02 15:44:08 +00:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
[soundFile seekToTime:seekTime];
|
|
|
|
shouldSeek = NO;
|
|
|
|
}
|
|
|
|
|
2006-01-20 15:34:02 +00:00
|
|
|
amountRead = [soundFile fillBuffer:buf ofSize: chunk_size];
|
|
|
|
if (amountRead <= 0)
|
|
|
|
{
|
2006-04-02 15:44:08 +00:00
|
|
|
endOfStream = YES;
|
2006-04-04 01:08:21 +00:00
|
|
|
DBLog(@"END OF INPUT WAS REACHED");
|
2006-01-20 15:34:02 +00:00
|
|
|
[controller endOfInputReached];
|
2006-04-02 20:03:12 +00:00
|
|
|
break; //eof
|
2006-01-20 15:34:02 +00:00
|
|
|
}
|
|
|
|
[self writeData:buf amount:amountRead];
|
|
|
|
}
|
2006-04-02 15:44:08 +00:00
|
|
|
|
2006-04-02 20:03:12 +00:00
|
|
|
free(buf);
|
2006-01-20 15:34:02 +00:00
|
|
|
[soundFile close];
|
|
|
|
}
|
|
|
|
|
2006-04-02 20:03:12 +00:00
|
|
|
- (void)seek:(double)time
|
|
|
|
{
|
|
|
|
seekTime = time;
|
|
|
|
shouldSeek = YES;
|
|
|
|
}
|
|
|
|
|
2006-01-20 15:34:02 +00:00
|
|
|
- (AudioStreamBasicDescription) format
|
|
|
|
{
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|