aboutsummaryrefslogtreecommitdiff
path: root/sound/mp3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound/mp3.cpp')
-rw-r--r--sound/mp3.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/sound/mp3.cpp b/sound/mp3.cpp
index f5b6420c4f..98144621c8 100644
--- a/sound/mp3.cpp
+++ b/sound/mp3.cpp
@@ -338,29 +338,6 @@ int MP3InputStream::readBuffer(int16 *buffer, const int numSamples) {
#pragma mark --- MP3 factory functions ---
#pragma mark -
-AudioStream *makeMP3Stream(
- Common::SeekableReadStream *stream,
- bool disposeAfterUse,
- uint32 startTime,
- uint32 duration,
- uint numLoops) {
-
- SeekableAudioStream *mp3 = new MP3InputStream(stream, disposeAfterUse);
- assert(mp3);
-
- if (startTime || duration) {
- Timestamp start(startTime, 1000), end(startTime + duration, 1000);
-
- if (!duration)
- end = mp3->getLength();
-
- mp3 = new SubSeekableAudioStream(mp3, start, end);
- assert(mp3);
- }
-
- return makeLoopingAudioStream(mp3, numLoops);
-}
-
SeekableAudioStream *makeMP3Stream(
Common::SeekableReadStream *stream,
bool disposeAfterUse) {