aboutsummaryrefslogtreecommitdiff
path: root/sound/decoders/raw.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-30 15:19:15 +0000
committerJohannes Schickel2010-01-30 15:19:15 +0000
commit8e3646e062528d1604d28676fa2faec5c5ac878b (patch)
tree68769735690ce17f0da01e525508184d0dd5b7c5 /sound/decoders/raw.h
parent523181d7193d829c86e5b255b47c35a4c28bca14 (diff)
downloadscummvm-rg350-8e3646e062528d1604d28676fa2faec5c5ac878b.tar.gz
scummvm-rg350-8e3646e062528d1604d28676fa2faec5c5ac878b.tar.bz2
scummvm-rg350-8e3646e062528d1604d28676fa2faec5c5ac878b.zip
Get rid of Audio::makeRawMemoryStream_OLD.
svn-id: r47715
Diffstat (limited to 'sound/decoders/raw.h')
-rw-r--r--sound/decoders/raw.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/sound/decoders/raw.h b/sound/decoders/raw.h
index e6fe0d6abf..92add95131 100644
--- a/sound/decoders/raw.h
+++ b/sound/decoders/raw.h
@@ -86,24 +86,6 @@ SeekableAudioStream *makeRawMemoryStream(const byte *ptr, uint32 len,
);
/**
- * NOTE:
- * This API is considered deprecated.
- *
- * Factory function for a raw PCM AudioStream, which will simply treat all
- * data in the buffer described by ptr and len as raw sample data in the
- * specified format. It will then simply pass this data directly to the mixer,
- * after converting it to the sample format used by the mixer (i.e. 16 bit
- * signed native endian). Optionally supports (infinite) looping of a portion
- * of the data.
- */
-AudioStream *makeRawMemoryStream_OLD(const byte *ptr, uint32 len,
- int rate, byte flags,
- uint loopStart, uint loopEnd,
- DisposeAfterUse::Flag autofreeBuffer = DisposeAfterUse::YES
- );
-
-
-/**
* Struct used to define the audio data to be played by a RawDiskStream.
*/
struct RawDiskStreamAudioBlock {