aboutsummaryrefslogtreecommitdiff
path: root/sound/flac.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/flac.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/flac.cpp')
-rw-r--r--sound/flac.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/flac.cpp b/sound/flac.cpp
index 0310754374..28db39f9f3 100644
--- a/sound/flac.cpp
+++ b/sound/flac.cpp
@@ -793,6 +793,12 @@ SeekableAudioStream *makeFlacStream(
return input;
}
+SeekableAudioStream *makeFlacStream(
+ Common::SeekableReadStream *stream,
+ bool disposeAfterUse) {
+ return makeFlacStream(stream, disposeAfterUse, 0, 0, 1);
+}
+
} // End of namespace Audio
#endif // #ifdef USE_FLAC