remove unused fields

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5778 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2003-12-28 04:33:43 +00:00
parent b52b0133da
commit 8f54fc7b8a
2 changed files with 0 additions and 11 deletions

View File

@ -21,12 +21,8 @@ vorbisDecoder::vorbisDecoder()
vorbis_info_init(&fInfo); vorbis_info_init(&fInfo);
vorbis_comment_init(&fComment); vorbis_comment_init(&fComment);
fResidualBytes = 0;
fResidualBuffer = 0;
fDecodeBuffer = new uint8 [DECODE_BUFFER_SIZE];
fStartTime = 0; fStartTime = 0;
fFrameSize = 0; fFrameSize = 0;
fBitRate = 0;
fOutputBufferSize = 0; fOutputBufferSize = 0;
} }
@ -34,7 +30,6 @@ vorbisDecoder::vorbisDecoder()
vorbisDecoder::~vorbisDecoder() vorbisDecoder::~vorbisDecoder()
{ {
TRACE("vorbisDecoder::~vorbisDecoder\n"); TRACE("vorbisDecoder::~vorbisDecoder\n");
delete [] fDecodeBuffer;
} }
@ -143,9 +138,7 @@ vorbisDecoder::Seek(uint32 seekTo,
int64 seekFrame, int64 *frame, int64 seekFrame, int64 *frame,
bigtime_t seekTime, bigtime_t *time) bigtime_t seekTime, bigtime_t *time)
{ {
debugger("vorbisDecoder::Seek");
TRACE("vorbisDecoder::Seek\n"); TRACE("vorbisDecoder::Seek\n");
fResidualBytes = 0;
return B_OK; return B_OK;
} }

View File

@ -30,12 +30,8 @@ private:
vorbis_dsp_state fDspState; vorbis_dsp_state fDspState;
vorbis_block fBlock; vorbis_block fBlock;
media_raw_video_format fOutput; media_raw_video_format fOutput;
int32 fResidualBytes;
uint8 * fResidualBuffer;
uint8 * fDecodeBuffer;
bigtime_t fStartTime; bigtime_t fStartTime;
int fFrameSize; int fFrameSize;
int fBitRate;
int fOutputBufferSize; int fOutputBufferSize;
}; };