2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2006-10-16 22:20:46 +00:00
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-10-18 18:34:40 +00:00
|
|
|
#ifndef SOUND_MODS_PROTRACKER_H
|
|
|
|
#define SOUND_MODS_PROTRACKER_H
|
2006-10-16 22:20:46 +00:00
|
|
|
|
|
|
|
#include "common/stdafx.h"
|
2006-10-23 01:37:59 +00:00
|
|
|
#include "common/stream.h"
|
2006-10-16 22:20:46 +00:00
|
|
|
|
2006-10-23 01:37:59 +00:00
|
|
|
namespace Audio {
|
2006-10-16 22:20:46 +00:00
|
|
|
|
2006-10-23 01:37:59 +00:00
|
|
|
class AudioStream;
|
2006-10-16 22:20:46 +00:00
|
|
|
|
2007-04-27 19:50:45 +00:00
|
|
|
/*
|
|
|
|
* Factory function for ProTracker streams. Reads all data from the
|
|
|
|
* given ReadStream and creates an AudioStream from this. No reference
|
|
|
|
* to the 'stream' object is kept, so you can safely delete it after
|
|
|
|
* invoking this factory.
|
|
|
|
*
|
|
|
|
* @param stream the ReadStream from which to read the ProTracker data
|
|
|
|
* @param rate TODO
|
|
|
|
* @param stereo TODO
|
|
|
|
* @return a new AudioStream, or NULL, if an error occured
|
|
|
|
*/
|
2007-02-11 02:47:02 +00:00
|
|
|
AudioStream *makeProtrackerStream(Common::ReadStream *stream, int rate = 44100, bool stereo = true);
|
2006-10-16 22:20:46 +00:00
|
|
|
|
2006-10-23 01:37:59 +00:00
|
|
|
} // End of namespace Audio
|
2006-10-16 22:20:46 +00:00
|
|
|
|
|
|
|
#endif
|