aboutsummaryrefslogtreecommitdiff
path: root/sound/vorbis.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-05 23:59:28 +0000
committerJohannes Schickel2010-01-05 23:59:28 +0000
commit81a94a06444fcefa8645b26ba34a5ee0e45851db (patch)
treec2f503610043b07fa001dcad2963fa058f6909a3 /sound/vorbis.cpp
parent79ee2b0895b4b64fab878f1f3c028e9bfdf5fcf3 (diff)
downloadscummvm-rg350-81a94a06444fcefa8645b26ba34a5ee0e45851db.tar.gz
scummvm-rg350-81a94a06444fcefa8645b26ba34a5ee0e45851db.tar.bz2
scummvm-rg350-81a94a06444fcefa8645b26ba34a5ee0e45851db.zip
- Put the new factories for MP3, Vorbis and FLAC in place.
- Marked the loop factories with loop related parameters as deprecated. svn-id: r47061
Diffstat (limited to 'sound/vorbis.cpp')
-rw-r--r--sound/vorbis.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/vorbis.cpp b/sound/vorbis.cpp
index 629c36b3db..2fd7c978be 100644
--- a/sound/vorbis.cpp
+++ b/sound/vorbis.cpp
@@ -349,6 +349,11 @@ SeekableAudioStream *makeVorbisStream(
return input;
}
+SeekableAudioStream *makeVorbisStream(
+ Common::SeekableReadStream *stream,
+ bool disposeAfterUse) {
+ return makeVorbisStream(stream, disposeAfterUse, 0, 0, 1);
+}
} // End of namespace Audio