cog/Plugins/CueSheet/CueSheetDecoder.m

200 lines
4.4 KiB
Matlab
Raw Normal View History

2007-10-09 02:25:40 +00:00
//
// CueSheetDecoder.m
// CueSheet
//
// Created by Zaphod Beeblebrox on 10/8/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "CueSheetDecoder.h"
#import "CueSheet.h"
#import "CueSheetTrack.h"
#import "CueSheetContainer.h"
2007-10-09 02:25:40 +00:00
@implementation CueSheetDecoder
+ (NSArray *)fileTypes
{
return [CueSheetContainer fileTypes];
2007-10-09 02:25:40 +00:00
}
- (NSDictionary *)properties
{
NSMutableDictionary *properties = [[decoder properties] mutableCopy];
//Need to alter length
[properties setObject:[NSNumber numberWithDouble:((trackEnd - [track time]) * 1000)] forKey:@"length"];
return [properties autorelease];
2007-10-09 02:25:40 +00:00
}
- (BOOL)open:(id<CogSource>)s
2007-10-09 02:25:40 +00:00
{
if (![[s url] isFileURL]) {
return NO;
}
NSURL *url = [s url];
[s close];
cuesheet = [CueSheet cueSheetWithFile:[url path]];
[cuesheet retain];
NSArray *tracks = [cuesheet tracks];
int i;
for (i = 0; i < [tracks count]; i++)
2007-10-09 02:25:40 +00:00
{
if ([[[tracks objectAtIndex:i] track] isEqualToString:[url fragment]]){
track = [tracks objectAtIndex:i];
[track retain];
//Kind of a hackish way of accessing outside classes.
source = [NSClassFromString(@"AudioSource") audioSourceForURL:[track url]];
[source retain];
if (![source open:[track url]]) {
NSLog(@"Could not open cuesheet source");
return NO;
}
decoder = [NSClassFromString(@"AudioDecoder") audioDecoderForURL:[source url]];
[decoder retain];
if (![decoder open:source]) {
NSLog(@"Could not open cuesheet decoder");
return NO;
}
CueSheetTrack *nextTrack = nil;
if (i + 1 < [tracks count]) {
nextTrack = [tracks objectAtIndex:i + 1];
}
NSDictionary *properties = [decoder properties];
int bitsPerSample = [[properties objectForKey:@"bitsPerSample"] intValue];
int channels = [[properties objectForKey:@"channels"] intValue];
float sampleRate = [[properties objectForKey:@"sampleRate"] floatValue];
bytesPerSecond = (int)((bitsPerSample/8) * channels * sampleRate);
[decoder seekToTime: [track time] * 1000.0];
if (nextTrack && [[[nextTrack url] absoluteString] isEqualToString:[[track url] absoluteString]]) {
trackEnd = [nextTrack time];
}
else {
trackEnd = [[properties objectForKey:@"length"] doubleValue]/1000.0;
}
//Note: Should register for observations of the decoder, but laziness consumes all.
[self willChangeValueForKey:@"properties"];
[self didChangeValueForKey:@"properties"];
return YES;
}
}
return NO;
}
- (void)close {
if (decoder) {
[decoder close];
[decoder release];
decoder = nil;
}
if (source) {
[source release];
source = nil;
2007-10-09 02:25:40 +00:00
}
if (cuesheet) {
[cuesheet release];
cuesheet = nil;
}
if (track) {
[track release];
track = nil;
}
}
- (BOOL)setTrack:(NSURL *)url
{
if ([[url fragment] intValue] == [[track track] intValue] + 1) {
NSArray *tracks = [cuesheet tracks];
int i;
for (i = 0; i < [tracks count]; i++) {
if ([[[tracks objectAtIndex:i] track] isEqualToString:[url fragment]]){
[track release];
track = [tracks objectAtIndex:i];
[track retain];
CueSheetTrack *nextTrack = nil;
if (i + 1 < [tracks count]) {
nextTrack = [tracks objectAtIndex:i + 1];
}
if (nextTrack && [[[nextTrack url] absoluteString] isEqualToString:[[track url] absoluteString]]) {
trackEnd = [nextTrack time];
}
else {
trackEnd = [[[decoder properties] objectForKey:@"length"] doubleValue]/1000.0;
}
NSLog(@"CHANGING TRACK!");
return YES;
}
}
}
return NO;
2007-10-09 02:25:40 +00:00
}
- (double)seekToTime:(double)time //milliseconds
{
double trackStartMs = [track time] * 1000.0;
double trackEndMs = trackEnd * 1000.0;
2007-10-09 02:25:40 +00:00
if (time > trackEndMs - trackStartMs) {
//need a better way of returning fail.
return -1.0;
}
time += trackStartMs;
bytePosition = (time/1000.0) * bytesPerSecond;
2007-10-09 02:25:40 +00:00
int bitsPerSample = [[[decoder properties] objectForKey:@"bitsPerSample"] intValue];
int channels = [[[decoder properties] objectForKey:@"channels"] intValue];
NSLog(@"Before: %li", bytePosition);
bytePosition -= bytePosition % (bitsPerSample/8 * channels);
NSLog(@"After: %li", bytePosition);
2007-10-09 02:25:40 +00:00
return [decoder seekToTime:time];
}
- (int)fillBuffer:(void *)buf ofSize:(UInt32)size
{
long trackByteEnd = trackEnd * bytesPerSecond;
2007-10-09 02:25:40 +00:00
if (bytePosition + size > trackByteEnd) {
size = trackByteEnd - bytePosition;
2007-10-09 02:25:40 +00:00
}
if (!size) {
return 0;
}
int n = [decoder fillBuffer:buf ofSize:size];
2007-10-09 02:25:40 +00:00
bytePosition += n;
return n;
2007-10-09 02:25:40 +00:00
}
@end