aboutsummaryrefslogtreecommitdiff
path: root/sound/vorbis.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-07 14:22:24 +0000
committerJohannes Schickel2010-01-07 14:22:24 +0000
commitb80779824f8fdec1bfbb59115cbcc01d07914a0b (patch)
treeb6993e0bcf4468fde4e67d63508d8f2623c66f8a /sound/vorbis.h
parent49e53ade008eb9cce1de00c45e41dbc6b52f8c49 (diff)
downloadscummvm-rg350-b80779824f8fdec1bfbb59115cbcc01d07914a0b.tar.gz
scummvm-rg350-b80779824f8fdec1bfbb59115cbcc01d07914a0b.tar.bz2
scummvm-rg350-b80779824f8fdec1bfbb59115cbcc01d07914a0b.zip
- Strip custom looping code out of FLAC, Vorbis and MP3 streams
- Adapt the legacy make*Stream factories to use the new AudioStream subclasses - Change return value of make*Stream back to AudioStream * svn-id: r47111
Diffstat (limited to 'sound/vorbis.h')
-rw-r--r--sound/vorbis.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/vorbis.h b/sound/vorbis.h
index 8ac7354f1f..e0c6f07b58 100644
--- a/sound/vorbis.h
+++ b/sound/vorbis.h
@@ -51,6 +51,7 @@ namespace Common {
namespace Audio {
+class AudioStream;
class SeekableAudioStream;
/**
@@ -69,7 +70,7 @@ class SeekableAudioStream;
* @param numLoops how often the data shall be looped (0 = infinite)
* @return a new SeekableAudioStream, or NULL, if an error occured
*/
-SeekableAudioStream *makeVorbisStream(
+AudioStream *makeVorbisStream(
Common::SeekableReadStream *stream,
bool disposeAfterUse,
uint32 startTime,