/* Scumm Tools * Copyright (C) 2004-2006 The ScummVM Team * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/tools/tags/release-0-10-0/utils/adpcm.h $ * $Id: adpcm.h 23138 2006-06-15 15:44:06Z h00ligan $ * */ #ifndef SOUND_ADPCM_H #define SOUND_ADPCM_H #include "audiostream.h" #include "stream.h" namespace Audio { class AudioStream; enum typesADPCM { kADPCMOki, kADPCMMSIma, kADPCMMS }; AudioStream *makeADPCMStream(Common::SeekableReadStream *stream, uint32 size, typesADPCM type, int rate = 22050, int channels = 2, uint32 blockAlign = 0); } // End of namespace Audio #endif