aboutsummaryrefslogtreecommitdiff
path: root/sound/decoders/mp3.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-28 09:15:58 +0000
committerJohannes Schickel2010-01-28 09:15:58 +0000
commit23f9891749b0f4ab736dd49109a79bf495b0cc58 (patch)
treee14d4330a9a6e0f387bcd3429291e40af2c0ed6f /sound/decoders/mp3.cpp
parent6fd8f7c0155f54af4a85c6a0e9d7b5bdf0fd71af (diff)
downloadscummvm-rg350-23f9891749b0f4ab736dd49109a79bf495b0cc58.tar.gz
scummvm-rg350-23f9891749b0f4ab736dd49109a79bf495b0cc58.tar.bz2
scummvm-rg350-23f9891749b0f4ab736dd49109a79bf495b0cc58.zip
Fix MP3 playback speed.
svn-id: r47632
Diffstat (limited to 'sound/decoders/mp3.cpp')
-rw-r--r--sound/decoders/mp3.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/decoders/mp3.cpp b/sound/decoders/mp3.cpp
index 378f77dac0..3d183dc403 100644
--- a/sound/decoders/mp3.cpp
+++ b/sound/decoders/mp3.cpp
@@ -146,9 +146,6 @@ void MP3InputStream::decodeMP3Data() {
readMP3Data();
while (_state == MP3_STATE_READY) {
- // TODO: Do we need to use readHeader, when we do not do any seeking here?
- readHeader();
-
// Decode the next frame
if (mad_frame_decode(&_frame, &_stream) == -1) {
if (_stream.error == MAD_ERROR_BUFLEN) {