aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2005-12-09 21:42:19 +0000
committerMax Horn2005-12-09 21:42:19 +0000
commite0e1dcda08ba26674e3f988594535ce542f44925 (patch)
tree89b1f5a5e91febcbf7f9633dcf83009f4e4b0fb8
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
-rw-r--r--scumm/imuse_digi/dimuse_codecs.cpp2
-rw-r--r--sound/adpcm.cpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/scumm/imuse_digi/dimuse_codecs.cpp b/scumm/imuse_digi/dimuse_codecs.cpp
index c6364d13be..c5b3e35a80 100644
--- a/scumm/imuse_digi/dimuse_codecs.cpp
+++ b/scumm/imuse_digi/dimuse_codecs.cpp
@@ -47,7 +47,7 @@ uint32 decode12BitsSample(const byte *src, byte **dst, uint32 size) {
/*
* The "IMC" codec below (see cases 13 & 15 in decompressCodec) is actually a
* variant of the IMA codec, see also
- * <http://home.pcisys.net/~melanson/codecs/simpleaudio.html>
+ * <http://www.multimedia.cx/simpleaudio.html>
*
* It is somewhat different, though: the standard ADPCM codecs use a fixed
* size for their data packets (4 bits), while the codec implemented here
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) {