52 lines
849 B
Objective-C
52 lines
849 B
Objective-C
//
|
|
// MADFile.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 6/17/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#define HAVE_CONFIG_H
|
|
#import <Cocoa/Cocoa.h>
|
|
#undef HAVE_CONFIG_H
|
|
|
|
#import "MAD/mad.h"
|
|
|
|
#import "Plugin.h"
|
|
|
|
#define INPUT_BUFFER_SIZE 5*8192
|
|
|
|
|
|
@interface MADDecoder : NSObject <CogDecoder>
|
|
{
|
|
struct mad_stream _stream;
|
|
struct mad_frame _frame;
|
|
struct mad_synth _synth;
|
|
mad_timer_t _timer;
|
|
mad_timer_t _duration;
|
|
unsigned char _inputBuffer[INPUT_BUFFER_SIZE+MAD_BUFFER_GUARD];
|
|
unsigned char *_outputBuffer;
|
|
int _outputAvailable;
|
|
int _fileSize;
|
|
|
|
id<CogSource> _source;
|
|
|
|
BOOL _seekSkip;
|
|
|
|
BOOL _firstFrame;
|
|
|
|
//For gapless playback of mp3s
|
|
BOOL _gapless;
|
|
long _currentFrame;
|
|
int _startPadding;
|
|
int _endPadding;
|
|
|
|
int channels;
|
|
int bitsPerSample;
|
|
float frequency;
|
|
int bitrate;
|
|
double length;
|
|
}
|
|
|
|
@end
|