diff options
-rw-r--r-- | scumm/imuse_digi/dimuse_codecs.cpp | 2 | ||||
-rw-r--r-- | sound/adpcm.cpp | 3 |
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) { |