xoreos  0.0.5
pcm.h
Go to the documentation of this file.
1 /* xoreos - A reimplementation of BioWare's Aurora engine
2  *
3  * xoreos is the legal property of its developers, whose names
4  * can be found in the AUTHORS file distributed with this source
5  * distribution.
6  *
7  * xoreos is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 3
10  * of the License, or (at your option) any later version.
11  *
12  * xoreos is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with xoreos. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
25 /* Based on ScummVM (<http://scummvm.org>) code, which is released
26  * under the terms of version 2 or later of the GNU General Public
27  * License.
28  *
29  * The original copyright note in ScummVM reads as follows:
30  *
31  * ScummVM is the legal property of its developers, whose names
32  * are too numerous to list here. Please refer to the COPYRIGHT
33  * file distributed with this source distribution.
34  *
35  * This program is free software; you can redistribute it and/or
36  * modify it under the terms of the GNU General Public License
37  * as published by the Free Software Foundation; either version 2
38  * of the License, or (at your option) any later version.
39  *
40  * This program is distributed in the hope that it will be useful,
41  * but WITHOUT ANY WARRANTY; without even the implied warranty of
42  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43  * GNU General Public License for more details.
44  *
45  * You should have received a copy of the GNU General Public License
46  * along with this program; if not, write to the Free Software
47  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
48  */
49 
50 #ifndef SOUND_DECODERS_RAW_H
51 #define SOUND_DECODERS_RAW_H
52 
53 namespace Sound {
54 
55 class PacketizedAudioStream;
56 class RewindableAudioStream;
57 
67 enum PCMFlags {
69  FLAG_UNSIGNED = 1 << 0,
70 
72  FLAG_16BITS = 1 << 1,
73 
76 
78 #ifdef XOREOS_LITTLE_ENDIAN
80 #else
82 #endif
83 };
84 
97 RewindableAudioStream *makePCMStream(Common::SeekableReadStream *stream,
98  int rate, byte flags, int channels,
99  bool disposeAfterUse = true);
100 
110 PacketizedAudioStream *makePacketizedPCMStream(int rate, byte flags, int channels);
111 
112 } // End of namespace Sound
113 
114 #endif // SOUND_DECODERS_RAW_H
PacketizedAudioStream * makePacketizedPCMStream(int rate, byte flags, int channels)
Creates a PacketizedAudioStream that will automatically queue packets as individual AudioStreams like...
Definition: pcm.cpp:171
PCMFlags
Various flags which can be bit-ORed and then passed to makeRawMemoryStream and some other AudioStream...
Definition: pcm.h:67
unsigned samples (default: signed)
Definition: pcm.h:69
RewindableAudioStream * makePCMStream(Common::SeekableReadStream *stream, int rate, byte flags, int channels, bool disposeAfterUse)
Creates an audio stream, which plays from the given stream.
Definition: pcm.cpp:140
Definition: game.h:37
sound is 16 bits wide (default: 8bit)
Definition: pcm.h:72
samples are in native endianness
Definition: pcm.h:81
samples are little endian (default: big endian)
Definition: pcm.h:75
Interface for a seekable & readable data stream.
Definition: readstream.h:265
uint8 byte
Definition: types.h:209