aboutsummaryrefslogtreecommitdiff
path: root/sound/mp3.cpp
diff options
context:
space:
mode:
authorMax Horn2003-12-19 01:30:19 +0000
committerMax Horn2003-12-19 01:30:19 +0000
commitd8903123b0bd4265de03f40eaaf6bb1d2b160c3f (patch)
treed1f0841228acacd932f41dbdd3b249a6fc5e97af /sound/mp3.cpp
parent0cddca5f43c5b85d28f2977d783a6cd5cec0d540 (diff)
downloadscummvm-rg350-d8903123b0bd4265de03f40eaaf6bb1d2b160c3f.tar.gz
scummvm-rg350-d8903123b0bd4265de03f40eaaf6bb1d2b160c3f.tar.bz2
scummvm-rg350-d8903123b0bd4265de03f40eaaf6bb1d2b160c3f.zip
distinguish between end of stream and end of data
svn-id: r11756
Diffstat (limited to 'sound/mp3.cpp')
-rw-r--r--sound/mp3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mp3.cpp b/sound/mp3.cpp
index f23a4e4248..96a096f3b8 100644
--- a/sound/mp3.cpp
+++ b/sound/mp3.cpp
@@ -152,7 +152,7 @@ public:
int readBuffer(int16 *buffer, const int numSamples);
int16 read();
- bool eos() const { return eosIntern(); }
+ bool endOfData() const { return eosIntern(); }
bool isStereo() const { return _isStereo; }
int getRate() const { return _frame.header.samplerate; }