aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTravis Howell2009-01-27 03:26:51 +0000
committerTravis Howell2009-01-27 03:26:51 +0000
commitf9d0d2a44a726f417911adfb03aee9caf22adebf (patch)
treedc0e4b868c3a79a9509c1bcb5cfadbbbaf2cd33a /sound
parentf002e06fe058c4c0fe11d44fc844f88ff90a389a (diff)
downloadscummvm-rg350-f9d0d2a44a726f417911adfb03aee9caf22adebf.tar.gz
scummvm-rg350-f9d0d2a44a726f417911adfb03aee9caf22adebf.tar.bz2
scummvm-rg350-f9d0d2a44a726f417911adfb03aee9caf22adebf.zip
Add/Update comments.
svn-id: r36094
Diffstat (limited to 'sound')
-rw-r--r--sound/adpcm.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/adpcm.cpp b/sound/adpcm.cpp
index 1140089910..3fb6d4d87e 100644
--- a/sound/adpcm.cpp
+++ b/sound/adpcm.cpp
@@ -501,6 +501,7 @@ int16 ADPCMInputStream::decodeTinsel(int16 code, double eVal) {
return (int16) CLIP<double>(sample, -32768.0, 32767.0);
}
+// TODO: Add optional support for sound looping
AudioStream *makeADPCMStream(Common::SeekableReadStream *stream, bool disposeAfterUse, uint32 size, typesADPCM type, int rate, int channels, uint32 blockAlign) {
return new ADPCMInputStream(stream, disposeAfterUse, size, type, rate, channels, blockAlign);
}