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.
|
2003-07-24 17:46:38 +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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-07-24 17:46:38 +00:00
|
|
|
*
|
2006-02-11 10:05:31 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-07-24 17:46:38 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-04-15 21:27:56 +00:00
|
|
|
#ifndef SOUND_AUDIOSTREAM_H
|
|
|
|
#define SOUND_AUDIOSTREAM_H
|
2003-07-24 17:46:38 +00:00
|
|
|
|
2005-01-11 08:06:19 +00:00
|
|
|
#include "common/util.h"
|
2003-08-01 12:21:04 +00:00
|
|
|
#include "common/scummsys.h"
|
2009-08-13 21:46:41 +00:00
|
|
|
#include "common/stream.h"
|
2003-07-24 18:20:12 +00:00
|
|
|
|
2010-01-05 02:27:24 +00:00
|
|
|
#include "sound/timestamp.h"
|
|
|
|
|
2006-04-29 22:33:31 +00:00
|
|
|
namespace Audio {
|
|
|
|
|
2010-01-05 02:27:24 +00:00
|
|
|
class SeekableAudioStream;
|
|
|
|
|
2003-07-24 17:46:38 +00:00
|
|
|
/**
|
2007-02-28 14:48:26 +00:00
|
|
|
* Generic audio input stream. Subclasses of this are used to feed arbitrary
|
|
|
|
* sampled audio data into ScummVM's audio mixer.
|
2003-07-24 17:46:38 +00:00
|
|
|
*/
|
2004-01-03 14:10:13 +00:00
|
|
|
class AudioStream {
|
2003-07-24 17:46:38 +00:00
|
|
|
public:
|
2004-01-03 14:10:13 +00:00
|
|
|
virtual ~AudioStream() {}
|
2003-07-28 18:01:56 +00:00
|
|
|
|
2003-08-04 22:15:16 +00:00
|
|
|
/**
|
2009-10-18 19:43:47 +00:00
|
|
|
* Fill the given buffer with up to numSamples samples. Returns the actual
|
|
|
|
* number of samples read, or -1 if a critical error occured (note: you
|
|
|
|
* *must* check if this value is less than what you requested, this can
|
2003-11-07 09:38:06 +00:00
|
|
|
* happen when the stream is fully used up).
|
2005-09-18 14:49:54 +00:00
|
|
|
*
|
2009-10-18 19:43:47 +00:00
|
|
|
* Data has to be in native endianess, 16 bit per sample, signed. For stereo
|
|
|
|
* stream, buffer will be filled with interleaved left and right channel
|
|
|
|
* samples, starting with a left sample. Furthermore, the samples in the
|
|
|
|
* left and right are summed up. So if you request 4 samples from a stereo
|
|
|
|
* stream, you will get a total of two left channel and two right channel
|
|
|
|
* samples.
|
2003-08-04 22:15:16 +00:00
|
|
|
*/
|
2003-12-19 00:32:47 +00:00
|
|
|
virtual int readBuffer(int16 *buffer, const int numSamples) = 0;
|
2003-08-04 22:15:16 +00:00
|
|
|
|
|
|
|
/** Is this a stereo stream? */
|
2003-07-28 01:13:31 +00:00
|
|
|
virtual bool isStereo() const = 0;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2009-03-04 06:58:28 +00:00
|
|
|
/** Sample rate of the stream. */
|
|
|
|
virtual int getRate() const = 0;
|
|
|
|
|
2003-12-19 01:30:19 +00:00
|
|
|
/**
|
|
|
|
* End of data reached? If this returns true, it means that at this
|
|
|
|
* time there is no data available in the stream. However there may be
|
|
|
|
* more data in the future.
|
|
|
|
* This is used by e.g. a rate converter to decide whether to keep on
|
|
|
|
* converting data or stop.
|
|
|
|
*/
|
|
|
|
virtual bool endOfData() const = 0;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-12-19 01:30:19 +00:00
|
|
|
/**
|
|
|
|
* End of stream reached? If this returns true, it means that all data
|
|
|
|
* in this stream is used up and no additional data will appear in it
|
|
|
|
* in the future.
|
|
|
|
* This is used by the mixer to decide whether a given stream shall be
|
|
|
|
* removed from the list of active streams (and thus be destroyed).
|
|
|
|
* By default this maps to endOfData()
|
|
|
|
*/
|
|
|
|
virtual bool endOfStream() const { return endOfData(); }
|
2003-08-02 02:41:31 +00:00
|
|
|
|
2010-01-01 15:35:12 +00:00
|
|
|
/**
|
|
|
|
* Sets number of times the stream is supposed to get looped
|
2010-01-01 22:56:18 +00:00
|
|
|
* This also resets the number of loops played counter, which
|
|
|
|
* can be queried with getNumPlayedLoops.
|
|
|
|
* @see getNumPlayedLoops
|
|
|
|
*
|
2010-01-01 15:35:12 +00:00
|
|
|
* @param numLoops number of loops to play, 0 - infinite
|
|
|
|
*/
|
2010-01-01 16:28:22 +00:00
|
|
|
virtual void setNumLoops(uint numLoops = 1) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns number of loops the stream has played.
|
|
|
|
* @param numLoops number of loops to play, 0 - infinite
|
|
|
|
*/
|
|
|
|
virtual uint getNumPlayedLoops() { return 0; }
|
2003-07-24 17:46:38 +00:00
|
|
|
};
|
|
|
|
|
2010-01-07 14:20:36 +00:00
|
|
|
/**
|
|
|
|
* A rewindable audio stream. This allows for restting the AudioStream
|
|
|
|
* to its initial state. Note that rewinding itself is not required to
|
|
|
|
* be working when the stream is being played by Mixer!
|
|
|
|
*/
|
|
|
|
class RewindableAudioStream : public AudioStream {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Rewinds the stream to its start.
|
|
|
|
*
|
|
|
|
* @return true on success, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool rewind() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A looping audio stream. This object does nothing beides using
|
|
|
|
* a RewindableAudioStream to play a stream in a loop.
|
|
|
|
*/
|
|
|
|
class LoopingAudioStream : public AudioStream {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a looping audio stream object.
|
|
|
|
*
|
|
|
|
* @param stream Stream to loop
|
|
|
|
* @param loops How often to loop (0 = infinite)
|
|
|
|
* @param disposeAfteruse Destroy the stream after the LoopingAudioStream has finished playback.
|
|
|
|
*/
|
|
|
|
LoopingAudioStream(RewindableAudioStream *stream, uint loops, bool disposeAfterUse = true);
|
|
|
|
~LoopingAudioStream();
|
|
|
|
|
|
|
|
int readBuffer(int16 *buffer, const int numSamples);
|
|
|
|
bool endOfData() const;
|
|
|
|
|
|
|
|
bool isStereo() const { return _parent->isStereo(); }
|
|
|
|
int getRate() const { return _parent->getRate(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns number of loops the stream has played.
|
|
|
|
* @param numLoops number of loops to play, 0 - infinite
|
|
|
|
*/
|
|
|
|
uint getCompleteIterations() const { return _completeIterations; }
|
|
|
|
private:
|
|
|
|
RewindableAudioStream *_parent;
|
|
|
|
bool _disposeAfterUse;
|
|
|
|
|
|
|
|
uint _loops;
|
|
|
|
uint _completeIterations;
|
|
|
|
};
|
|
|
|
|
2010-01-05 02:27:24 +00:00
|
|
|
/**
|
2010-01-07 15:12:20 +00:00
|
|
|
* A seekable audio stream. Subclasses of this class implement an
|
|
|
|
* interface for seeking. The seeking itself is not required to be
|
|
|
|
* working while the stream is being played by Mixer!
|
2010-01-05 02:27:24 +00:00
|
|
|
*/
|
2010-01-07 14:20:36 +00:00
|
|
|
class SeekableAudioStream : public RewindableAudioStream {
|
2010-01-05 02:27:24 +00:00
|
|
|
public:
|
2010-01-06 15:23:33 +00:00
|
|
|
/**
|
|
|
|
* Tries to load a file by trying all available formats.
|
|
|
|
* In case of an error, the file handle will be closed, but deleting
|
|
|
|
* it is still the responsibilty of the caller.
|
|
|
|
* @param basename a filename without an extension
|
|
|
|
* @return an SeekableAudioStream ready to use in case of success;
|
|
|
|
* NULL in case of an error (e.g. invalid/nonexisting file)
|
|
|
|
*/
|
|
|
|
static SeekableAudioStream *openStreamFile(const Common::String &basename);
|
|
|
|
|
2010-01-05 02:27:24 +00:00
|
|
|
/**
|
|
|
|
* Seeks to a given offset in the stream.
|
|
|
|
*
|
|
|
|
* @param where offset in milliseconds
|
|
|
|
* @return true on success, false on failure.
|
|
|
|
*/
|
|
|
|
bool seek(uint32 where) {
|
|
|
|
return seek(Timestamp(where, getRate()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Seeks to a given offset in the stream.
|
|
|
|
*
|
|
|
|
* @param where offset as timestamp
|
|
|
|
* @return true on success, false on failure.
|
|
|
|
*/
|
|
|
|
virtual bool seek(const Timestamp &where) = 0;
|
2010-01-05 20:13:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the length of the stream.
|
|
|
|
*
|
|
|
|
* @return length as Timestamp.
|
|
|
|
*/
|
|
|
|
virtual Timestamp getLength() const = 0;
|
2010-01-07 14:20:36 +00:00
|
|
|
|
|
|
|
virtual bool rewind() { return seek(0); }
|
2010-01-05 02:27:24 +00:00
|
|
|
};
|
|
|
|
|
2010-01-07 14:20:36 +00:00
|
|
|
/**
|
|
|
|
* A SubSeekableAudioStream provides access to a SeekableAudioStream
|
|
|
|
* just in the range [start, end).
|
|
|
|
* The same caveats apply to SubSeekableAudioStream as do to SeekableAudioStream.
|
|
|
|
*
|
|
|
|
* Manipulating the parent stream directly /will/ mess up a substream.
|
2010-01-07 14:25:16 +00:00
|
|
|
*
|
|
|
|
* IMPORTANT:
|
|
|
|
* Note for engine authors. This object is currently under inspection. In case
|
|
|
|
* we need to revise the looping API we might drop this. So if you really need
|
|
|
|
* something like this object, please drop a mail to LordHoto.
|
2010-01-07 14:20:36 +00:00
|
|
|
*/
|
|
|
|
class SubSeekableAudioStream : public SeekableAudioStream {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a new SubSeekableAudioStream.
|
|
|
|
*
|
|
|
|
* @param parent parent stream object.
|
|
|
|
* @param start Start time.
|
|
|
|
* @param end End time.
|
|
|
|
* @param disposeAfterUse Whether the parent stream object should be destroied on desctruction of the SubSeekableAudioStream.
|
|
|
|
*/
|
|
|
|
SubSeekableAudioStream(SeekableAudioStream *parent, const Timestamp start, const Timestamp end, bool disposeAfterUse = true);
|
|
|
|
~SubSeekableAudioStream();
|
|
|
|
|
|
|
|
int readBuffer(int16 *buffer, const int numSamples);
|
|
|
|
|
|
|
|
bool isStereo() const { return _isStereo; }
|
|
|
|
|
|
|
|
int getRate() const { return _parent->getRate(); }
|
|
|
|
|
|
|
|
bool endOfData() const { return (_pos >= _length) || _parent->endOfStream(); }
|
|
|
|
|
|
|
|
bool seek(const Timestamp &where);
|
|
|
|
|
|
|
|
Timestamp getLength() const { return _length; }
|
|
|
|
private:
|
|
|
|
SeekableAudioStream *_parent;
|
|
|
|
bool _disposeAfterUse;
|
|
|
|
const bool _isStereo;
|
|
|
|
|
|
|
|
const Timestamp _start;
|
|
|
|
Timestamp _pos, _length;
|
|
|
|
};
|
2009-08-13 21:46:41 +00:00
|
|
|
|
2007-02-28 14:48:26 +00:00
|
|
|
/**
|
2009-10-18 19:43:47 +00:00
|
|
|
* Factory function for a raw linear AudioStream, which will simply treat all
|
|
|
|
* data in the buffer described by ptr and len as raw sample data in the
|
|
|
|
* specified format. It will then simply pass this data directly to the mixer,
|
|
|
|
* after converting it to the sample format used by the mixer (i.e. 16 bit
|
|
|
|
* signed native endian). Optionally supports (infinite) looping of a portion
|
|
|
|
* of the data.
|
2007-02-28 14:48:26 +00:00
|
|
|
*/
|
2010-01-05 02:27:24 +00:00
|
|
|
SeekableAudioStream *makeLinearInputStream(const byte *ptr, uint32 len, int rate,
|
2009-10-18 19:43:47 +00:00
|
|
|
byte flags, uint loopStart, uint loopEnd);
|
2005-01-09 03:15:59 +00:00
|
|
|
|
2009-08-13 21:46:41 +00:00
|
|
|
|
2009-10-18 19:43:47 +00:00
|
|
|
/**
|
|
|
|
* Struct used to define the audio data to be played by a LinearDiskStream.
|
|
|
|
*/
|
2009-08-13 21:46:41 +00:00
|
|
|
struct LinearDiskStreamAudioBlock {
|
|
|
|
int32 pos; ///< Position in stream of the block
|
|
|
|
int32 len; ///< Length of the block (in samples)
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-10-18 19:43:47 +00:00
|
|
|
/**
|
|
|
|
* Factory function for a Linear Disk Stream. This can stream linear (PCM)
|
|
|
|
* audio from disk. The function takes an pointer to an array of
|
|
|
|
* LinearDiskStreamAudioBlock which defines the start position and length of
|
|
|
|
* each block of uncompressed audio in the stream.
|
2009-08-13 21:46:41 +00:00
|
|
|
*/
|
2010-01-05 02:27:24 +00:00
|
|
|
SeekableAudioStream *makeLinearDiskStream(Common::SeekableReadStream *stream, LinearDiskStreamAudioBlock *block,
|
2009-10-18 19:43:47 +00:00
|
|
|
int numBlocks, int rate, byte flags, bool disposeStream, uint loopStart, uint loopEnd);
|
2009-08-13 21:46:41 +00:00
|
|
|
|
2006-05-18 21:46:07 +00:00
|
|
|
/**
|
|
|
|
* An audio stream to which additional data can be appended on-the-fly.
|
2008-04-20 19:02:34 +00:00
|
|
|
* Used by SMUSH, iMuseDigital, the Kyrandia 3 VQA player, etc.
|
2006-05-18 21:46:07 +00:00
|
|
|
*/
|
|
|
|
class AppendableAudioStream : public Audio::AudioStream {
|
|
|
|
public:
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2007-02-28 14:48:26 +00:00
|
|
|
/**
|
|
|
|
* Queue another audio data buffer for playback. The stream
|
|
|
|
* will playback all queued buffers, in the order they were
|
|
|
|
* queued. After all data contained in them has been played,
|
|
|
|
* the buffer will be delete[]'d (so make sure to allocate them
|
|
|
|
* with new[], not with malloc).
|
|
|
|
*/
|
|
|
|
virtual void queueBuffer(byte *data, uint32 size) = 0;
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2007-02-28 14:48:26 +00:00
|
|
|
/**
|
|
|
|
* Mark the stream as finished, that is, signal that no further data
|
|
|
|
* will be appended to it. Only after this has been done can the
|
2008-04-20 19:02:34 +00:00
|
|
|
* AppendableAudioStream ever 'end'
|
2007-02-28 14:48:26 +00:00
|
|
|
*/
|
2006-05-18 21:46:07 +00:00
|
|
|
virtual void finish() = 0;
|
|
|
|
};
|
|
|
|
|
2007-02-28 14:48:26 +00:00
|
|
|
/**
|
|
|
|
* Factory function for an AppendableAudioStream. The rate and flags
|
|
|
|
* parameters are analog to those used in makeLinearInputStream.
|
|
|
|
*/
|
|
|
|
AppendableAudioStream *makeAppendableAudioStream(int rate, byte flags);
|
2006-05-18 21:46:07 +00:00
|
|
|
|
2010-01-06 15:40:49 +00:00
|
|
|
/**
|
|
|
|
* Calculates the sample, which the timestamp describes in a
|
|
|
|
* AudioStream with the given framerate.
|
|
|
|
*
|
|
|
|
* @param where point in time
|
|
|
|
* @param rate rate of the AudioStream
|
|
|
|
* @return sample index
|
|
|
|
*/
|
|
|
|
uint32 calculateSampleOffset(const Timestamp &where, int rate);
|
2005-01-09 03:15:59 +00:00
|
|
|
|
2006-04-29 22:33:31 +00:00
|
|
|
} // End of namespace Audio
|
|
|
|
|
2003-07-24 17:46:38 +00:00
|
|
|
#endif
|