aboutsummaryrefslogtreecommitdiff
path: root/sound/vorbis.h
diff options
context:
space:
mode:
authorMax Horn2007-07-15 18:29:05 +0000
committerMax Horn2007-07-15 18:29:05 +0000
commit11b2806741da02dde2e2e4c1d5fa8ebb26d64233 (patch)
tree35d0d86b7683d6c61592dc29474df415db27f3d6 /sound/vorbis.h
parente07e5eeb1dbe83f23de230481568ac5d977b1f0a (diff)
downloadscummvm-rg350-11b2806741da02dde2e2e4c1d5fa8ebb26d64233.tar.gz
scummvm-rg350-11b2806741da02dde2e2e4c1d5fa8ebb26d64233.tar.bz2
scummvm-rg350-11b2806741da02dde2e2e4c1d5fa8ebb26d64233.zip
Removed the old (obsolete) audiostream factories for MP3/Vorbis/FLAC data which took a File pointer and a size (these were only implemented as brain-dead wrapper around the newer factory methods anyway)
svn-id: r28110
Diffstat (limited to 'sound/vorbis.h')
-rw-r--r--sound/vorbis.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/sound/vorbis.h b/sound/vorbis.h
index 03d2496fe8..98430e6aaa 100644
--- a/sound/vorbis.h
+++ b/sound/vorbis.h
@@ -41,15 +41,6 @@ namespace Audio {
class AudioStream;
/**
- * Create a new AudioStream from the Ogg Vorbis data in the given
- * file. If you only want to play part of that file, then seek
- * to the start position in file before passing it to this
- * factory function, and specify the appropriate size.
- */
-AudioStream *makeVorbisStream(Common::File *file, uint32 size);
-
-
-/**
* Create a new AudioStream from the Ogg Vorbis data in the given stream.
* Allows for looping (which is why we require a SeekableReadStream),
* and specifying only a portion of the data to be played, based