2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
// MusepackFile.h
|
|
|
|
// zyVorbis
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 1/23/05.
|
2005-07-02 17:02:06 -04:00
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2008-02-07 21:08:56 -03:00
|
|
|
#import <mpcdec/mpcdec.h>
|
2007-02-24 17:36:27 -03:00
|
|
|
#import "Plugin.h"
|
2005-06-02 14:16:43 -04:00
|
|
|
|
2007-02-24 17:36:27 -03:00
|
|
|
@interface MusepackDecoder : NSObject <CogDecoder>
|
|
|
|
{
|
2007-03-04 15:41:43 -03:00
|
|
|
id<CogSource> source;
|
2005-06-02 14:16:43 -04:00
|
|
|
mpc_decoder decoder;
|
2007-03-04 17:47:49 -03:00
|
|
|
mpc_streaminfo info;
|
|
|
|
mpc_reader reader;
|
|
|
|
|
2007-02-24 17:36:27 -03:00
|
|
|
char buffer[MPC_FRAME_LENGTH*4];
|
2008-02-10 13:18:23 -03:00
|
|
|
int bufferFrames;
|
2007-02-24 17:36:27 -03:00
|
|
|
|
|
|
|
int bitrate;
|
|
|
|
float frequency;
|
2008-02-10 13:18:23 -03:00
|
|
|
long totalFrames;
|
2005-06-02 14:16:43 -04:00
|
|
|
}
|
2008-02-10 13:18:23 -03:00
|
|
|
- (BOOL)writeToBuffer:(uint16_t *)sample_buffer fromBuffer:(const MPC_SAMPLE_FORMAT *)p_buffer frames:(unsigned)frames;
|
2005-06-02 14:16:43 -04:00
|
|
|
|
2007-03-04 15:41:43 -03:00
|
|
|
- (void)setSource:(id<CogSource>)s;
|
|
|
|
- (id<CogSource>)source;
|
2005-06-02 14:16:43 -04:00
|
|
|
|
|
|
|
@end
|