From 7ff88ea392f430ccc78fdd0503136d8ed1aac036 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 5 Aug 2003 18:17:26 +0000 Subject: more cleanup svn-id: r9513 --- sound/audiostream.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'sound/audiostream.cpp') diff --git a/sound/audiostream.cpp b/sound/audiostream.cpp index 5a25d61468..3c2405a0b9 100644 --- a/sound/audiostream.cpp +++ b/sound/audiostream.cpp @@ -207,7 +207,6 @@ class MP3InputStream : public MusicStream { int _curChannel; File *_file; byte *_ptr; - int _rate; bool init(); void refill(bool first = false); @@ -222,7 +221,7 @@ public: bool eos() const { return eosIntern(); } bool isStereo() const { return _isStereo; } - int getRate() const { return _rate; } + int getRate() const { return _frame.header.samplerate; } }; @@ -251,7 +250,6 @@ MP3InputStream::MP3InputStream(File *file, mad_timer_t duration, uint size) { _curChannel = 0; _file = file; _ptr = (byte *)malloc(_bufferSize + MAD_BUFFER_GUARD); - _rate = 0; init(); @@ -303,9 +301,6 @@ bool MP3InputStream::init() { return false; } - // Determine the sample rate - _rate = _frame.header.samplerate; - return true; } -- cgit v1.2.3