aboutsummaryrefslogtreecommitdiff
path: root/sound/decoders/flac.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-02-03 09:42:11 +0000
committerJohannes Schickel2010-02-03 09:42:11 +0000
commitfe35d372dab08a2e202b5ecb41ccc14298f8cfbd (patch)
tree447b16207cb64222d62b6c244fcfccd2aa743cc7 /sound/decoders/flac.h
parent9cad13957da8a67e68dd4e268eb53f8e413eb4be (diff)
downloadscummvm-rg350-fe35d372dab08a2e202b5ecb41ccc14298f8cfbd.tar.gz
scummvm-rg350-fe35d372dab08a2e202b5ecb41ccc14298f8cfbd.tar.bz2
scummvm-rg350-fe35d372dab08a2e202b5ecb41ccc14298f8cfbd.zip
- Rename FlacStream to FLACStream.
- Rename makeFlacStream to makeFLACStream. svn-id: r47846
Diffstat (limited to 'sound/decoders/flac.h')
-rw-r--r--sound/decoders/flac.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/decoders/flac.h b/sound/decoders/flac.h
index e35b608253..982450c045 100644
--- a/sound/decoders/flac.h
+++ b/sound/decoders/flac.h
@@ -59,11 +59,11 @@ class SeekableAudioStream;
* Create a new SeekableAudioStream from the FLAC data in the given stream.
* Allows for seeking (which is why we require a SeekableReadStream).
*
- * @param stream the SeekableReadStream from which to read the FLAC data
- * @param disposeAfterUse whether to delete the stream after use
- * @return a new SeekableAudioStream, or NULL, if an error occured
+ * @param stream the SeekableReadStream from which to read the FLAC data
+ * @param disposeAfterUse whether to delete the stream after use
+ * @return a new SeekableAudioStream, or NULL, if an error occured
*/
-SeekableAudioStream *makeFlacStream(
+SeekableAudioStream *makeFLACStream(
Common::SeekableReadStream *stream,
DisposeAfterUse::Flag disposeAfterUse);