remove unused fields
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5778 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
b52b0133da
commit
8f54fc7b8a
@ -21,12 +21,8 @@ vorbisDecoder::vorbisDecoder()
|
||||
vorbis_info_init(&fInfo);
|
||||
vorbis_comment_init(&fComment);
|
||||
|
||||
fResidualBytes = 0;
|
||||
fResidualBuffer = 0;
|
||||
fDecodeBuffer = new uint8 [DECODE_BUFFER_SIZE];
|
||||
fStartTime = 0;
|
||||
fFrameSize = 0;
|
||||
fBitRate = 0;
|
||||
fOutputBufferSize = 0;
|
||||
}
|
||||
|
||||
@ -34,7 +30,6 @@ vorbisDecoder::vorbisDecoder()
|
||||
vorbisDecoder::~vorbisDecoder()
|
||||
{
|
||||
TRACE("vorbisDecoder::~vorbisDecoder\n");
|
||||
delete [] fDecodeBuffer;
|
||||
}
|
||||
|
||||
|
||||
@ -143,9 +138,7 @@ vorbisDecoder::Seek(uint32 seekTo,
|
||||
int64 seekFrame, int64 *frame,
|
||||
bigtime_t seekTime, bigtime_t *time)
|
||||
{
|
||||
debugger("vorbisDecoder::Seek");
|
||||
TRACE("vorbisDecoder::Seek\n");
|
||||
fResidualBytes = 0;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
@ -30,12 +30,8 @@ private:
|
||||
vorbis_dsp_state fDspState;
|
||||
vorbis_block fBlock;
|
||||
media_raw_video_format fOutput;
|
||||
int32 fResidualBytes;
|
||||
uint8 * fResidualBuffer;
|
||||
uint8 * fDecodeBuffer;
|
||||
bigtime_t fStartTime;
|
||||
int fFrameSize;
|
||||
int fBitRate;
|
||||
int fOutputBufferSize;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user