aboutsummaryrefslogtreecommitdiff
path: root/audio/decoders/voc.h
diff options
context:
space:
mode:
authorJohannes Schickel2011-12-24 18:23:47 +0100
committerJohannes Schickel2011-12-24 18:23:47 +0100
commitc6599ea5eed1b44f4aa8d632384f0dfa014e9327 (patch)
treef822f6e8fe10c611f31a05fb14ad34d5f28a7d03 /audio/decoders/voc.h
parentd876dddd45d4d8fa5d93396d3d922b720e273c99 (diff)
downloadscummvm-rg350-c6599ea5eed1b44f4aa8d632384f0dfa014e9327.tar.gz
scummvm-rg350-c6599ea5eed1b44f4aa8d632384f0dfa014e9327.tar.bz2
scummvm-rg350-c6599ea5eed1b44f4aa8d632384f0dfa014e9327.zip
AUDIO: Remove obsolete loadVOCFromStream.
Diffstat (limited to 'audio/decoders/voc.h')
-rw-r--r--audio/decoders/voc.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/audio/decoders/voc.h b/audio/decoders/voc.h
index 7d96d261b5..e16ffce42f 100644
--- a/audio/decoders/voc.h
+++ b/audio/decoders/voc.h
@@ -78,14 +78,6 @@ struct VocBlockHeader {
extern int getSampleRateFromVOCRate(int vocSR);
/**
- * Try to load a VOC from the given stream. Returns a pointer to memory
- * containing the PCM sample data (allocated with malloc). It is the callers
- * responsibility to dellocate that data again later on! Currently this
- * function only supports uncompressed raw PCM data.
- */
-extern byte *loadVOCFromStream(Common::ReadStream &stream, int &size, int &rate);
-
-/**
* Try to load a VOC from the given seekable stream and create an AudioStream
* from that data. Currently this function only supports uncompressed raw PCM
* data.