Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
416 lines (364 loc) · 17.6 KB

SDL_audio.h

File metadata and controls

416 lines (364 loc) · 17.6 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library 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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
*/
Jul 10, 2006
Jul 10, 2006
23
24
25
26
27
/**
* \file SDL_audio.h
*
* Access to the raw audio mixing buffer for the SDL library
*/
Apr 26, 2001
Apr 26, 2001
28
29
30
31
#ifndef _SDL_audio_h
#define _SDL_audio_h
Feb 9, 2006
Feb 9, 2006
32
#include "SDL_stdinc.h"
Apr 26, 2001
Apr 26, 2001
33
#include "SDL_error.h"
Feb 10, 2006
Feb 10, 2006
34
#include "SDL_endian.h"
Feb 10, 2006
Feb 10, 2006
35
36
37
#include "SDL_mutex.h"
#include "SDL_thread.h"
#include "SDL_rwops.h"
Apr 26, 2001
Apr 26, 2001
38
39
40
41
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
42
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
43
extern "C" {
Jul 10, 2006
Jul 10, 2006
44
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
45
46
#endif
Aug 3, 2006
Aug 3, 2006
47
48
typedef Uint16 SDL_AudioFormat;
Apr 26, 2001
Apr 26, 2001
49
/* The calculated values in this structure are calculated by SDL_OpenAudio() */
Jul 10, 2006
Jul 10, 2006
50
51
52
typedef struct SDL_AudioSpec
{
int freq; /* DSP frequency -- samples per second */
Aug 3, 2006
Aug 3, 2006
53
SDL_AudioFormat format; /* Audio data format */
Jul 10, 2006
Jul 10, 2006
54
55
56
57
58
59
60
61
62
63
64
65
66
Uint8 channels; /* Number of channels: 1 mono, 2 stereo */
Uint8 silence; /* Audio buffer silence value (calculated) */
Uint16 samples; /* Audio buffer size in samples (power of 2) */
Uint16 padding; /* Necessary for some compile environments */
Uint32 size; /* Audio buffer size in bytes (calculated) */
/* This function is called when the audio device needs more data.
'stream' is a pointer to the audio data buffer
'len' is the length of that buffer in bytes.
Once the callback returns, the buffer will no longer be valid.
Stereo samples are stored in a LRLRLR ordering.
*/
void (SDLCALL * callback) (void *userdata, Uint8 * stream, int len);
void *userdata;
Apr 26, 2001
Apr 26, 2001
67
68
} SDL_AudioSpec;
Aug 3, 2006
Aug 3, 2006
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
These are what the 16 bits in SDL_AudioFormat currently mean...
(Unspecified bits are always zero.)
++-----------------------sample is signed if set
||
|| ++-----------sample is bigendian if set
|| ||
|| || ++---sample is float if set
|| || ||
|| || || +---sample bit size---+
|| || || | |
15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00
There are macros in SDL 1.3 and later to query these bits.
*/
#define SDL_AUDIO_MASK_BITSIZE (0xFF)
#define SDL_AUDIO_MASK_DATATYPE (1<<8)
#define SDL_AUDIO_MASK_ENDIAN (1<<12)
#define SDL_AUDIO_MASK_SIGNED (1<<15)
#define SDL_AUDIO_BITSIZE(x) (x & SDL_AUDIO_MASK_BITSIZE)
#define SDL_AUDIO_ISFLOAT(x) (x & SDL_AUDIO_MASK_DATATYPE)
#define SDL_AUDIO_ISBIGENDIAN(x) (x & SDL_AUDIO_MASK_ENDIAN)
#define SDL_AUDIO_ISSIGNED(x) (x & SDL_AUDIO_MASK_SIGNED)
#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x))
#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x))
#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x))
Apr 26, 2001
Apr 26, 2001
99
/* Audio format flags (defaults to LSB byte order) */
Jul 10, 2006
Jul 10, 2006
100
101
102
103
104
105
#define AUDIO_U8 0x0008 /* Unsigned 8-bit samples */
#define AUDIO_S8 0x8008 /* Signed 8-bit samples */
#define AUDIO_U16LSB 0x0010 /* Unsigned 16-bit samples */
#define AUDIO_S16LSB 0x8010 /* Signed 16-bit samples */
#define AUDIO_U16MSB 0x1010 /* As above, but big-endian byte order */
#define AUDIO_S16MSB 0x9010 /* As above, but big-endian byte order */
Apr 26, 2001
Apr 26, 2001
106
107
108
#define AUDIO_U16 AUDIO_U16LSB
#define AUDIO_S16 AUDIO_S16LSB
Aug 3, 2006
Aug 3, 2006
109
110
111
112
113
114
115
116
117
118
/* int32 support new to SDL 1.3 */
#define AUDIO_S32LSB 0x8020 /* 32-bit integer samples */
#define AUDIO_S32MSB 0x9020 /* As above, but big-endian byte order */
#define AUDIO_S32 AUDIO_S32LSB
/* float32 support new to SDL 1.3 */
#define AUDIO_F32LSB 0x8120 /* 32-bit floating point samples */
#define AUDIO_F32MSB 0x9120 /* As above, but big-endian byte order */
#define AUDIO_F32 AUDIO_F32LSB
Apr 26, 2001
Apr 26, 2001
119
120
121
122
/* Native audio byte ordering */
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
#define AUDIO_U16SYS AUDIO_U16LSB
#define AUDIO_S16SYS AUDIO_S16LSB
Aug 3, 2006
Aug 3, 2006
123
124
#define AUDIO_S32SYS AUDIO_S32LSB
#define AUDIO_F32SYS AUDIO_F32LSB
Apr 26, 2001
Apr 26, 2001
125
126
127
#else
#define AUDIO_U16SYS AUDIO_U16MSB
#define AUDIO_S16SYS AUDIO_S16MSB
Aug 3, 2006
Aug 3, 2006
128
129
#define AUDIO_S32SYS AUDIO_S32MSB
#define AUDIO_F32SYS AUDIO_F32MSB
Apr 26, 2001
Apr 26, 2001
130
131
132
133
#endif
/* A structure to hold a set of audio conversion filters and buffers */
Aug 24, 2006
Aug 24, 2006
134
struct SDL_AudioCVT;
Aug 28, 2006
Aug 28, 2006
135
136
typedef void (SDLCALL * SDL_AudioFilter) (struct SDL_AudioCVT * cvt,
SDL_AudioFormat format);
Aug 24, 2006
Aug 24, 2006
137
Jul 10, 2006
Jul 10, 2006
138
139
typedef struct SDL_AudioCVT
{
Aug 28, 2006
Aug 28, 2006
140
141
142
143
144
145
146
147
148
149
150
int needed; /* Set to 1 if conversion possible */
SDL_AudioFormat src_format; /* Source audio format */
SDL_AudioFormat dst_format; /* Target audio format */
double rate_incr; /* Rate conversion increment */
Uint8 *buf; /* Buffer to hold entire audio data */
int len; /* Length of original audio buffer */
int len_cvt; /* Length of converted audio buffer */
int len_mult; /* buffer must be len*len_mult big */
double len_ratio; /* Given len, final size is len*len_ratio */
SDL_AudioFilter filters[10]; /* Filter list */
int filter_index; /* Current audio conversion function */
Apr 26, 2001
Apr 26, 2001
151
152
153
154
155
} SDL_AudioCVT;
/* Function prototypes */
Oct 17, 2006
Oct 17, 2006
156
/* These functions return the list of built in audio drivers, in the
Jul 10, 2006
Jul 10, 2006
157
158
159
160
161
* order that they are normally initialized by default.
*/
extern DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void);
extern DECLSPEC const char *SDLCALL SDL_GetAudioDriver(int index);
Apr 26, 2001
Apr 26, 2001
162
163
164
165
/* These functions are used internally, and should not be used unless you
* have a specific need to specify the audio driver you want to use.
* You should normally use SDL_Init() or SDL_InitSubSystem().
*/
Apr 11, 2002
Apr 11, 2002
166
167
extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name);
extern DECLSPEC void SDLCALL SDL_AudioQuit(void);
Apr 26, 2001
Apr 26, 2001
168
Jul 10, 2006
Jul 10, 2006
169
170
/* This function returns the name of the current audio driver, or NULL
* if no driver has been initialized.
Apr 26, 2001
Apr 26, 2001
171
*/
Jul 10, 2006
Jul 10, 2006
172
extern DECLSPEC const char *SDLCALL SDL_GetCurrentAudioDriver(void);
Apr 26, 2001
Apr 26, 2001
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
* This function opens the audio device with the desired parameters, and
* returns 0 if successful, placing the actual hardware parameters in the
* structure pointed to by 'obtained'. If 'obtained' is NULL, the audio
* data passed to the callback function will be guaranteed to be in the
* requested format, and will be automatically converted to the hardware
* audio format if necessary. This function returns -1 if it failed
* to open the audio device, or couldn't set up the audio thread.
*
* When filling in the desired audio spec structure,
* 'desired->freq' should be the desired audio frequency in samples-per-second.
* 'desired->format' should be the desired audio format.
* 'desired->samples' is the desired size of the audio buffer, in samples.
* This number should be a power of two, and may be adjusted by the audio
* driver to a value more suitable for the hardware. Good values seem to
* range between 512 and 8096 inclusive, depending on the application and
* CPU speed. Smaller values yield faster response time, but can lead
* to underflow if the application is doing heavy processing and cannot
* fill the audio buffer in time. A stereo sample consists of both right
* and left channels in LR ordering.
* Note that the number of samples is directly related to time by the
* following formula: ms = (samples*1000)/freq
* 'desired->size' is the size in bytes of the audio buffer, and is
* calculated by SDL_OpenAudio().
* 'desired->silence' is the value used to set the buffer to silence,
* and is calculated by SDL_OpenAudio().
* 'desired->callback' should be set to a function that will be called
* when the audio device is ready for more data. It is passed a pointer
* to the audio buffer, and the length in bytes of the audio buffer.
* This function usually runs in a separate thread, and so you should
* protect data structures that it accesses by calling SDL_LockAudio()
* and SDL_UnlockAudio() in your code.
* 'desired->userdata' is passed as the first parameter to your callback
* function.
*
* The audio device starts out playing silence when it's opened, and should
* be enabled for playing by calling SDL_PauseAudio(0) when you are ready
* for your audio callback function to be called. Since the audio driver
* may modify the requested size of the audio buffer, you should allocate
* any local mixing buffers after you open the audio device.
*/
Oct 17, 2006
Oct 17, 2006
215
extern DECLSPEC int SDLCALL SDL_OpenAudio(const SDL_AudioSpec * desired,
Jul 10, 2006
Jul 10, 2006
216
SDL_AudioSpec * obtained);
Apr 26, 2001
Apr 26, 2001
217
Aug 3, 2006
Aug 3, 2006
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
* SDL Audio Device IDs.
* A successful call to SDL_OpenAudio() is always device id 1, and legacy
* SDL audio APIs assume you want this device ID. SDL_OpenAudioDevice() calls
* always returns devices >= 2 on success. The legacy calls are good both
* for backwards compatibility and when you don't care about multiple,
* specific, or capture devices.
*/
typedef Uint32 SDL_AudioDeviceID;
/*
* Get the number of available devices exposed by the current driver.
* Only valid after a successfully initializing the audio subsystem.
Oct 17, 2006
Oct 17, 2006
231
232
233
234
235
236
237
* Returns -1 if an explicit list of devices can't be determined; this is
* not an error. For example, if SDL is set up to talk to a remote audio
* server, it can't list every one available on the Internet, but it will
* still allow a specific host to be specified to SDL_OpenAudioDevice().
* In many common cases, when this function returns a value <= 0, it can still
* successfully open the default device (NULL for first argument of
* SDL_OpenAudioDevice()).
Aug 3, 2006
Aug 3, 2006
238
239
240
241
242
243
244
*/
extern DECLSPEC int SDLCALL SDL_GetNumAudioDevices(int iscapture);
/*
* Get the human-readable name of a specific audio device.
* Must be a value between 0 and (number of audio devices-1).
* Only valid after a successfully initializing the audio subsystem.
Oct 17, 2006
Oct 17, 2006
245
246
247
248
249
250
251
252
* The values returned by this function reflect the latest call to
* SDL_GetNumAudioDevices(); recall that function to redetect available
* hardware.
*
* The string returned by this function is UTF-8 encoded, read-only, and
* managed internally. You are not to free it. If you need to keep the
* string for any length of time, you should make your own copy of it, as it
* will be invalid next time any of several other SDL functions is called.
Aug 3, 2006
Aug 3, 2006
253
*/
Oct 17, 2006
Oct 17, 2006
254
255
extern DECLSPEC const char *SDLCALL SDL_GetAudioDeviceName(int index,
int iscapture);
Aug 3, 2006
Aug 3, 2006
256
257
258
/*
Oct 17, 2006
Oct 17, 2006
259
260
261
262
263
264
265
266
* Open a specific audio device. Passing in a device name of NULL requests
* the most reasonable default (and is equivalent to calling SDL_OpenAudio()).
* The device name is a UTF-8 string reported by SDL_GetAudioDevice(), but
* some drivers allow arbitrary and driver-specific strings, such as a
* hostname/IP address for a remote audio server, or a filename in the
* diskaudio driver.
* Returns 0 on error, a valid device ID that is >= 2 on success.
* SDL_OpenAudio(), unlike this function, always acts on device ID 1.
Aug 3, 2006
Aug 3, 2006
267
*/
Aug 5, 2006
Aug 5, 2006
268
269
270
271
272
273
274
275
extern DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(const char
*device,
int iscapture,
const
SDL_AudioSpec *
desired,
SDL_AudioSpec *
obtained);
Aug 3, 2006
Aug 3, 2006
276
277
278
Apr 26, 2001
Apr 26, 2001
279
280
281
/*
* Get the current audio state:
*/
Jul 10, 2006
Jul 10, 2006
282
283
284
285
286
typedef enum
{
SDL_AUDIO_STOPPED = 0,
SDL_AUDIO_PLAYING,
SDL_AUDIO_PAUSED
Apr 26, 2001
Apr 26, 2001
287
} SDL_audiostatus;
Apr 11, 2002
Apr 11, 2002
288
extern DECLSPEC SDL_audiostatus SDLCALL SDL_GetAudioStatus(void);
Apr 26, 2001
Apr 26, 2001
289
Aug 5, 2006
Aug 5, 2006
290
291
extern DECLSPEC SDL_audiostatus SDLCALL
SDL_GetAudioDeviceStatus(SDL_AudioDeviceID dev);
Aug 3, 2006
Aug 3, 2006
292
Apr 26, 2001
Apr 26, 2001
293
294
295
296
297
298
299
/*
* This function pauses and unpauses the audio callback processing.
* It should be called with a parameter of 0 after opening the audio
* device to start playing sound. This is so you can safely initialize
* data for your callback function after opening the audio device.
* Silence will be written to the audio device during the pause.
*/
Apr 11, 2002
Apr 11, 2002
300
extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on);
Aug 3, 2006
Aug 3, 2006
301
302
extern DECLSPEC void SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID dev,
int pause_on);
Apr 26, 2001
Apr 26, 2001
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* This function loads a WAVE from the data source, automatically freeing
* that source if 'freesrc' is non-zero. For example, to load a WAVE file,
* you could do:
* SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...);
*
* If this function succeeds, it returns the given SDL_AudioSpec,
* filled with the audio data format of the wave data, and sets
* 'audio_buf' to a malloc()'d buffer containing the audio data,
* and sets 'audio_len' to the length of that audio buffer, in bytes.
* You need to free the audio buffer with SDL_FreeWAV() when you are
* done with it.
*
* This function returns NULL and sets the SDL error message if the
* wave file cannot be opened, uses an unknown data format, or is
* corrupt. Currently raw and MS-ADPCM WAVE files are supported.
*/
Jul 10, 2006
Jul 10, 2006
321
322
323
324
325
extern DECLSPEC SDL_AudioSpec *SDLCALL SDL_LoadWAV_RW(SDL_RWops * src,
int freesrc,
SDL_AudioSpec * spec,
Uint8 ** audio_buf,
Uint32 * audio_len);
Apr 26, 2001
Apr 26, 2001
326
327
328
329
330
331
332
333
/* Compatibility convenience function -- loads a WAV from a file */
#define SDL_LoadWAV(file, spec, audio_buf, audio_len) \
SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
/*
* This function frees data previously allocated with SDL_LoadWAV_RW()
*/
Jul 10, 2006
Jul 10, 2006
334
extern DECLSPEC void SDLCALL SDL_FreeWAV(Uint8 * audio_buf);
Apr 26, 2001
Apr 26, 2001
335
336
337
338
339
340
/*
* This function takes a source format and rate and a destination format
* and rate, and initializes the 'cvt' structure with information needed
* by SDL_ConvertAudio() to convert a buffer of audio data from one format
* to the other.
Aug 3, 2006
Aug 3, 2006
341
342
* Returns -1 if the format conversion is not supported, 0 if there's
* no conversion needed, or 1 if the audio filter is set up.
Apr 26, 2001
Apr 26, 2001
343
*/
Jul 10, 2006
Jul 10, 2006
344
extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT * cvt,
Aug 24, 2006
Aug 24, 2006
345
SDL_AudioFormat src_format,
Jul 10, 2006
Jul 10, 2006
346
347
Uint8 src_channels,
int src_rate,
Aug 24, 2006
Aug 24, 2006
348
SDL_AudioFormat dst_format,
Jul 10, 2006
Jul 10, 2006
349
350
Uint8 dst_channels,
int dst_rate);
Apr 26, 2001
Apr 26, 2001
351
352
353
354
355
356
357
358
359
/* Once you have initialized the 'cvt' structure using SDL_BuildAudioCVT(),
* created an audio buffer cvt->buf, and filled it with cvt->len bytes of
* audio data in the source format, this function will convert it in-place
* to the desired format.
* The data conversion may expand the size of the audio data, so the buffer
* cvt->buf should be allocated after the cvt structure is initialized by
* SDL_BuildAudioCVT(), and should be cvt->len*cvt->len_mult bytes long.
*/
Jul 10, 2006
Jul 10, 2006
360
extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT * cvt);
Apr 26, 2001
Apr 26, 2001
361
362
363
364
365
366
367
368
369
/*
* This takes two audio buffers of the playing audio format and mixes
* them, performing addition, volume adjustment, and overflow clipping.
* The volume ranges from 0 - 128, and should be set to SDL_MIX_MAXVOLUME
* for full audio volume. Note this does not change hardware volume.
* This is provided for convenience -- you can mix your own audio data.
*/
#define SDL_MIX_MAXVOLUME 128
Jul 10, 2006
Jul 10, 2006
370
371
extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 * dst, const Uint8 * src,
Uint32 len, int volume);
Apr 26, 2001
Apr 26, 2001
372
Aug 3, 2006
Aug 3, 2006
373
374
375
376
377
/*
* This works like SDL_MixAudio, but you specify the audio format instead of
* using the format of audio device 1. Thus it can be used when no audio
* device is open at all.
*/
Aug 5, 2006
Aug 5, 2006
378
379
extern DECLSPEC void SDLCALL SDL_MixAudioFormat(Uint8 * dst,
const Uint8 * src,
Aug 3, 2006
Aug 3, 2006
380
381
382
SDL_AudioFormat format,
Uint32 len, int volume);
Apr 26, 2001
Apr 26, 2001
383
384
385
386
387
388
/*
* The lock manipulated by these functions protects the callback function.
* During a LockAudio/UnlockAudio pair, you can be guaranteed that the
* callback function is not running. Do not call these from the callback
* function or you will cause deadlock.
*/
Apr 11, 2002
Apr 11, 2002
389
extern DECLSPEC void SDLCALL SDL_LockAudio(void);
Aug 3, 2006
Aug 3, 2006
390
extern DECLSPEC void SDLCALL SDL_LockAudioDevice(SDL_AudioDeviceID dev);
Apr 11, 2002
Apr 11, 2002
391
extern DECLSPEC void SDLCALL SDL_UnlockAudio(void);
Aug 3, 2006
Aug 3, 2006
392
extern DECLSPEC void SDLCALL SDL_UnlockAudioDevice(SDL_AudioDeviceID dev);
Apr 26, 2001
Apr 26, 2001
393
394
395
396
/*
* This function shuts down audio processing and closes the audio device.
*/
Apr 11, 2002
Apr 11, 2002
397
extern DECLSPEC void SDLCALL SDL_CloseAudio(void);
Aug 3, 2006
Aug 3, 2006
398
399
400
401
402
403
extern DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID dev);
/*
* Returns 1 if audio device is still functioning, zero if not, -1 on error.
*/
extern DECLSPEC int SDLCALL SDL_AudioDeviceConnected(SDL_AudioDeviceID dev);
Apr 26, 2001
Apr 26, 2001
404
405
406
407
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
408
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
409
}
Jul 10, 2006
Jul 10, 2006
410
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
411
412
413
414
#endif
#include "close_code.h"
#endif /* _SDL_audio_h */
Jul 10, 2006
Jul 10, 2006
415
416
/* vi: set ts=4 sw=4 expandtab: */