aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2005-12-09 21:42:19 +0000
committerMax Horn2005-12-09 21:42:19 +0000
commite0e1dcda08ba26674e3f988594535ce542f44925 (patch)
tree89b1f5a5e91febcbf7f9633dcf83009f4e4b0fb8 /sound
parentb90e114f2c562afeaa2cc2c14ceb71e6b683da2f (diff)
downloadscummvm-rg350-e0e1dcda08ba26674e3f988594535ce542f44925.tar.gz
scummvm-rg350-e0e1dcda08ba26674e3f988594535ce542f44925.tar.bz2
scummvm-rg350-e0e1dcda08ba26674e3f988594535ce542f44925.zip
URL pointing to an IMA format reference
svn-id: r19766
Diffstat (limited to 'sound')
-rw-r--r--sound/adpcm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/adpcm.cpp b/sound/adpcm.cpp
index ea771cb4c8..bae635547e 100644
--- a/sound/adpcm.cpp
+++ b/sound/adpcm.cpp
@@ -28,7 +28,8 @@
// Dialogic or Oki ADPCM coding format aka VOX.
// See also <http://www.comptek.ru/telephony/tnotes/tt1-13.html>
//
-// In addition, also IMA ADPCM is supported.
+// In addition, also IMA ADPCM is supported. See
+// <http://www.multimedia.cx/simpleaudio.html>.
ADPCMInputStream::ADPCMInputStream(Common::SeekableReadStream *stream, uint32 size, typesADPCM type, int channels, uint32 blockAlign)
: _stream(stream), _channels(channels), _type(type), _blockAlign(blockAlign) {