cog/Plugins/MonkeysAudio/MonkeysAudioDecoder.mm

94 lines
1.8 KiB
Plaintext
Raw Normal View History

2005-06-02 18:16:43 +00:00
//
// MonkeysFile.m
// zyVorbis
//
// Created by Vincent Spader on 1/30/05.
2005-07-02 21:02:06 +00:00
// Copyright 2005 Vincent Spader All rights reserved.
2005-06-02 18:16:43 +00:00
//
#import "MonkeysAudioDecoder.h"
2005-06-02 18:16:43 +00:00
#import "MAC/ApeInfo.h"
2006-04-17 02:18:09 +00:00
#import "MAC/CharacterHelper.h"
2005-06-02 18:16:43 +00:00
@implementation MonkeysAudioDecoder
2005-06-02 18:16:43 +00:00
- (BOOL)open:(NSURL *)url
2005-06-02 18:16:43 +00:00
{
int n;
2006-04-17 02:18:09 +00:00
str_utf16 *chars = NULL;
chars = GetUTF16FromUTF8((const unsigned char *)[[url path] UTF8String]);
2006-04-17 02:18:09 +00:00
if(chars == NULL)
return NO;
2005-06-02 18:16:43 +00:00
2006-04-17 02:18:09 +00:00
decompress = CreateIAPEDecompress(chars, &n);
free(chars);
2005-06-02 18:16:43 +00:00
if (decompress == NULL)
{
NSLog(@"ERROR OPENING FILE");
2005-06-02 18:16:43 +00:00
return NO;
}
frequency = decompress->GetInfo(APE_INFO_SAMPLE_RATE);
bitsPerSample = decompress->GetInfo(APE_INFO_BITS_PER_SAMPLE);
channels = decompress->GetInfo(APE_INFO_CHANNELS);
length = ((double)decompress->GetInfo(APE_INFO_TOTAL_BLOCKS)*1000.0)/frequency;
2005-06-02 18:16:43 +00:00
return YES;
}
- (int)fillBuffer:(void *)buf ofSize:(UInt32)size
{
int n;
int numread;
int blockAlign = decompress->GetInfo(APE_INFO_BLOCK_ALIGN);
n = decompress->GetData((char *)buf, size/blockAlign, &numread);
if (n != ERROR_SUCCESS)
{
NSLog(@"ERROR: %i", n);
2005-06-02 18:16:43 +00:00
return 0;
}
numread *= blockAlign;
return numread;
}
- (void)close
{
// DBLog(@"CLOSE");
if (decompress)
delete decompress;
decompress = NULL;
}
- (double)seekToTime:(double)milliseconds
2005-06-02 18:16:43 +00:00
{
int r;
// DBLog(@"HELLO: %i", int(frequency*((double)milliseconds/1000.0)));
r = decompress->Seek(int(frequency*((double)milliseconds/1000.0)));
return milliseconds;
2005-06-02 18:16:43 +00:00
}
- (NSDictionary *)properties
{
return [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:channels],@"channels",
[NSNumber numberWithInt:bitsPerSample],@"bitsPerSample",
[NSNumber numberWithFloat:frequency],@"sampleRate",
[NSNumber numberWithDouble:length],@"length",
@"little",@"endian",
nil];
}
+ (NSArray *)fileTypes
{
return [NSArray arrayWithObject:@"ape"];
}
2005-06-02 18:16:43 +00:00
@end