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

Latest commit

 

History

History
509 lines (458 loc) · 19.5 KB

SDL_audio.h

File metadata and controls

509 lines (458 loc) · 19.5 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Apr 26, 2001
Apr 26, 2001
20
21
*/
Jul 10, 2006
Jul 10, 2006
22
/**
Oct 19, 2009
Oct 19, 2009
23
24
25
* \file SDL_audio.h
*
* Access to the raw audio mixing buffer for the SDL library.
Jul 10, 2006
Jul 10, 2006
26
*/
Apr 26, 2001
Apr 26, 2001
27
28
29
30
#ifndef _SDL_audio_h
#define _SDL_audio_h
Feb 9, 2006
Feb 9, 2006
31
#include "SDL_stdinc.h"
Apr 26, 2001
Apr 26, 2001
32
#include "SDL_error.h"
Feb 10, 2006
Feb 10, 2006
33
#include "SDL_endian.h"
Feb 10, 2006
Feb 10, 2006
34
35
36
#include "SDL_mutex.h"
#include "SDL_thread.h"
#include "SDL_rwops.h"
Apr 26, 2001
Apr 26, 2001
37
38
39
40
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
41
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
42
extern "C" {
Jul 10, 2006
Jul 10, 2006
43
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
44
45
#endif
Oct 19, 2009
Oct 19, 2009
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* \brief Audio format flags.
*
* These are what the 16 bits in SDL_AudioFormat currently mean...
* (Unspecified bits are always zero).
*
* \verbatim
++-----------------------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
\endverbatim
*
* There are macros in SDL 1.3 and later to query these bits.
*/
Aug 3, 2006
Aug 3, 2006
66
67
typedef Uint16 SDL_AudioFormat;
Oct 19, 2009
Oct 19, 2009
68
69
70
71
/**
* \name Audio flags
*/
/*@{*/
Aug 3, 2006
Aug 3, 2006
72
73
74
75
76
77
78
79
80
81
82
83
84
#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))
Oct 19, 2009
Oct 19, 2009
85
86
87
88
89
90
91
92
93
94
95
96
/**
* \name Audio format flags
*
* Defaults to LSB byte order.
*/
/*@{*/
#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
97
98
#define AUDIO_U16 AUDIO_U16LSB
#define AUDIO_S16 AUDIO_S16LSB
Oct 19, 2009
Oct 19, 2009
99
/*@}*/
Apr 26, 2001
Apr 26, 2001
100
Oct 19, 2009
Oct 19, 2009
101
102
103
104
105
106
107
108
/**
* \name 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 */
Aug 3, 2006
Aug 3, 2006
109
#define AUDIO_S32 AUDIO_S32LSB
Oct 19, 2009
Oct 19, 2009
110
/*@}*/
Aug 3, 2006
Aug 3, 2006
111
Oct 19, 2009
Oct 19, 2009
112
113
114
115
116
117
118
119
/**
* \name 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 */
Aug 3, 2006
Aug 3, 2006
120
#define AUDIO_F32 AUDIO_F32LSB
Oct 19, 2009
Oct 19, 2009
121
/*@}*/
Aug 3, 2006
Aug 3, 2006
122
Oct 19, 2009
Oct 19, 2009
123
124
125
126
/**
* \name Native audio byte ordering
*/
/*@{*/
Apr 26, 2001
Apr 26, 2001
127
128
129
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
#define AUDIO_U16SYS AUDIO_U16LSB
#define AUDIO_S16SYS AUDIO_S16LSB
Aug 3, 2006
Aug 3, 2006
130
131
#define AUDIO_S32SYS AUDIO_S32LSB
#define AUDIO_F32SYS AUDIO_F32LSB
Apr 26, 2001
Apr 26, 2001
132
133
134
#else
#define AUDIO_U16SYS AUDIO_U16MSB
#define AUDIO_S16SYS AUDIO_S16MSB
Aug 3, 2006
Aug 3, 2006
135
136
#define AUDIO_S32SYS AUDIO_S32MSB
#define AUDIO_F32SYS AUDIO_F32MSB
Apr 26, 2001
Apr 26, 2001
137
#endif
Oct 19, 2009
Oct 19, 2009
138
/*@}*/
Apr 26, 2001
Apr 26, 2001
139
Oct 19, 2009
Oct 19, 2009
140
141
142
143
144
145
/**
* \name Allow change flags
*
* Which audio format changes are allowed when opening a device.
*/
/*@{*/
Dec 13, 2008
Dec 13, 2008
146
147
148
149
#define SDL_AUDIO_ALLOW_FREQUENCY_CHANGE 0x00000001
#define SDL_AUDIO_ALLOW_FORMAT_CHANGE 0x00000002
#define SDL_AUDIO_ALLOW_CHANNELS_CHANGE 0x00000004
#define SDL_AUDIO_ALLOW_ANY_CHANGE (SDL_AUDIO_ALLOW_FREQUENCY_CHANGE|SDL_AUDIO_ALLOW_FORMAT_CHANGE|SDL_AUDIO_ALLOW_CHANNELS_CHANGE)
Oct 19, 2009
Oct 19, 2009
150
151
152
153
/*@}*/
/*@}*//*Audio flags*/
Dec 13, 2009
Dec 13, 2009
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**
* This function is called when the audio device needs more data.
*
* \param userdata An application-specific parameter saved in
* the SDL_AudioSpec structure
* \param stream A pointer to the audio data buffer.
* \param len 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.
*/
typedef void (SDLCALL * SDL_AudioCallback) (void *userdata, Uint8 * stream,
int len);
Oct 19, 2009
Oct 19, 2009
168
169
170
171
172
173
174
175
176
177
178
179
/**
* The calculated values in this structure are calculated by SDL_OpenAudio().
*/
typedef struct SDL_AudioSpec
{
int freq; /**< DSP frequency -- samples per second */
SDL_AudioFormat format; /**< Audio data format */
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) */
Dec 13, 2009
Dec 13, 2009
180
SDL_AudioCallback callback;
Oct 19, 2009
Oct 19, 2009
181
182
183
void *userdata;
} SDL_AudioSpec;
Apr 26, 2001
Apr 26, 2001
184
Aug 24, 2006
Aug 24, 2006
185
struct SDL_AudioCVT;
Aug 28, 2006
Aug 28, 2006
186
187
typedef void (SDLCALL * SDL_AudioFilter) (struct SDL_AudioCVT * cvt,
SDL_AudioFormat format);
Aug 24, 2006
Aug 24, 2006
188
Oct 19, 2009
Oct 19, 2009
189
190
191
/**
* A structure to hold a set of audio conversion filters and buffers.
*/
Jul 10, 2006
Jul 10, 2006
192
193
typedef struct SDL_AudioCVT
{
Oct 19, 2009
Oct 19, 2009
194
195
196
197
198
199
200
201
202
203
204
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
205
206
207
208
209
} SDL_AudioCVT;
/* Function prototypes */
Oct 19, 2009
Oct 19, 2009
210
211
212
213
214
/**
* \name Driver discovery functions
*
* These functions return the list of built in audio drivers, in the
* order that they are normally initialized by default.
Jul 10, 2006
Jul 10, 2006
215
*/
Oct 19, 2009
Oct 19, 2009
216
/*@{*/
Jul 10, 2006
Jul 10, 2006
217
218
extern DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void);
extern DECLSPEC const char *SDLCALL SDL_GetAudioDriver(int index);
Oct 19, 2009
Oct 19, 2009
219
/*@}*/
Jul 10, 2006
Jul 10, 2006
220
Oct 19, 2009
Oct 19, 2009
221
222
223
224
225
226
/**
* \name Initialization and cleanup
*
* \internal 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 26, 2001
Apr 26, 2001
227
*/
Oct 19, 2009
Oct 19, 2009
228
/*@{*/
Apr 11, 2002
Apr 11, 2002
229
230
extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name);
extern DECLSPEC void SDLCALL SDL_AudioQuit(void);
Oct 19, 2009
Oct 19, 2009
231
/*@}*/
Apr 26, 2001
Apr 26, 2001
232
Oct 19, 2009
Oct 19, 2009
233
234
235
/**
* This function returns the name of the current audio driver, or NULL
* if no driver has been initialized.
Apr 26, 2001
Apr 26, 2001
236
*/
Jul 10, 2006
Jul 10, 2006
237
extern DECLSPEC const char *SDLCALL SDL_GetCurrentAudioDriver(void);
Apr 26, 2001
Apr 26, 2001
238
Oct 19, 2009
Oct 19, 2009
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/**
* 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 \c obtained. If \c 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,
* - \c desired->freq should be the desired audio frequency in samples-per-
* second.
* - \c desired->format should be the desired audio format.
* - \c 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: \code ms = (samples*1000)/freq \endcode
* - \c desired->size is the size in bytes of the audio buffer, and is
* calculated by SDL_OpenAudio().
* - \c desired->silence is the value used to set the buffer to silence,
* and is calculated by SDL_OpenAudio().
* - \c 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.
* - \c 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 \c 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.
Apr 26, 2001
Apr 26, 2001
280
*/
Dec 13, 2008
Dec 13, 2008
281
extern DECLSPEC int SDLCALL SDL_OpenAudio(SDL_AudioSpec * desired,
Jul 10, 2006
Jul 10, 2006
282
SDL_AudioSpec * obtained);
Apr 26, 2001
Apr 26, 2001
283
Oct 19, 2009
Oct 19, 2009
284
285
286
287
/**
* SDL Audio Device IDs.
*
* A successful call to SDL_OpenAudio() is always device id 1, and legacy
Aug 3, 2006
Aug 3, 2006
288
289
290
291
292
293
294
* 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;
Oct 19, 2009
Oct 19, 2009
295
296
/**
* Get the number of available devices exposed by the current driver.
Aug 3, 2006
Aug 3, 2006
297
* Only valid after a successfully initializing the audio subsystem.
Oct 17, 2006
Oct 17, 2006
298
299
300
301
* 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().
Oct 19, 2009
Oct 19, 2009
302
303
*
* In many common cases, when this function returns a value <= 0, it can still
Oct 17, 2006
Oct 17, 2006
304
305
* successfully open the default device (NULL for first argument of
* SDL_OpenAudioDevice()).
Aug 3, 2006
Aug 3, 2006
306
307
308
*/
extern DECLSPEC int SDLCALL SDL_GetNumAudioDevices(int iscapture);
Oct 19, 2009
Oct 19, 2009
309
310
/**
* Get the human-readable name of a specific audio device.
Aug 3, 2006
Aug 3, 2006
311
312
* 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
313
314
315
* The values returned by this function reflect the latest call to
* SDL_GetNumAudioDevices(); recall that function to redetect available
* hardware.
Oct 19, 2009
Oct 19, 2009
316
317
*
* The string returned by this function is UTF-8 encoded, read-only, and
Oct 17, 2006
Oct 17, 2006
318
319
320
* 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
321
*/
Oct 17, 2006
Oct 17, 2006
322
323
extern DECLSPEC const char *SDLCALL SDL_GetAudioDeviceName(int index,
int iscapture);
Aug 3, 2006
Aug 3, 2006
324
325
Oct 19, 2009
Oct 19, 2009
326
327
/**
* Open a specific audio device. Passing in a device name of NULL requests
Oct 17, 2006
Oct 17, 2006
328
* the most reasonable default (and is equivalent to calling SDL_OpenAudio()).
Oct 19, 2009
Oct 19, 2009
329
330
*
* The device name is a UTF-8 string reported by SDL_GetAudioDeviceName(), but
Oct 17, 2006
Oct 17, 2006
331
332
333
* 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.
Oct 19, 2009
Oct 19, 2009
334
335
336
*
* \return 0 on error, a valid device ID that is >= 2 on success.
*
Oct 17, 2006
Oct 17, 2006
337
* SDL_OpenAudio(), unlike this function, always acts on device ID 1.
Aug 3, 2006
Aug 3, 2006
338
*/
Aug 5, 2006
Aug 5, 2006
339
340
341
342
343
344
345
extern DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(const char
*device,
int iscapture,
const
SDL_AudioSpec *
desired,
SDL_AudioSpec *
Dec 13, 2008
Dec 13, 2008
346
347
348
obtained,
int
allowed_changes);
Aug 3, 2006
Aug 3, 2006
349
350
351
Oct 19, 2009
Oct 19, 2009
352
353
354
355
/**
* \name Audio state
*
* Get the current audio state.
Apr 26, 2001
Apr 26, 2001
356
*/
Oct 19, 2009
Oct 19, 2009
357
/*@{*/
Jul 10, 2006
Jul 10, 2006
358
359
360
361
362
typedef enum
{
SDL_AUDIO_STOPPED = 0,
SDL_AUDIO_PLAYING,
SDL_AUDIO_PAUSED
Dec 10, 2009
Dec 10, 2009
363
364
} SDL_AudioStatus;
extern DECLSPEC SDL_AudioStatus SDLCALL SDL_GetAudioStatus(void);
Apr 26, 2001
Apr 26, 2001
365
Dec 10, 2009
Dec 10, 2009
366
extern DECLSPEC SDL_AudioStatus SDLCALL
Aug 5, 2006
Aug 5, 2006
367
SDL_GetAudioDeviceStatus(SDL_AudioDeviceID dev);
Oct 19, 2009
Oct 19, 2009
368
/*@}*//*Audio State*/
Aug 3, 2006
Aug 3, 2006
369
Oct 19, 2009
Oct 19, 2009
370
371
372
373
374
375
376
377
/**
* \name Pause audio functions
*
* These functions pause and unpause the audio callback processing.
* They 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 26, 2001
Apr 26, 2001
378
*/
Oct 19, 2009
Oct 19, 2009
379
/*@{*/
Apr 11, 2002
Apr 11, 2002
380
extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on);
Aug 3, 2006
Aug 3, 2006
381
382
extern DECLSPEC void SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID dev,
int pause_on);
Oct 19, 2009
Oct 19, 2009
383
/*@}*//*Pause audio functions*/
Apr 26, 2001
Apr 26, 2001
384
Oct 19, 2009
Oct 19, 2009
385
386
387
388
389
390
391
/**
* This function loads a WAVE from the data source, automatically freeing
* that source if \c freesrc is non-zero. For example, to load a WAVE file,
* you could do:
* \code
* SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...);
* \endcode
Apr 26, 2001
Apr 26, 2001
392
*
Oct 19, 2009
Oct 19, 2009
393
394
395
396
397
398
* If this function succeeds, it returns the given SDL_AudioSpec,
* filled with the audio data format of the wave data, and sets
* \c *audio_buf to a malloc()'d buffer containing the audio data,
* and sets \c *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.
Apr 26, 2001
Apr 26, 2001
399
*
Oct 19, 2009
Oct 19, 2009
400
401
402
* 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.
Apr 26, 2001
Apr 26, 2001
403
*/
Jul 10, 2006
Jul 10, 2006
404
405
406
407
408
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
409
Oct 19, 2009
Oct 19, 2009
410
411
412
413
/**
* Loads a WAV from a file.
* Compatibility convenience function.
*/
Apr 26, 2001
Apr 26, 2001
414
415
416
#define SDL_LoadWAV(file, spec, audio_buf, audio_len) \
SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
Oct 19, 2009
Oct 19, 2009
417
418
/**
* This function frees data previously allocated with SDL_LoadWAV_RW()
Apr 26, 2001
Apr 26, 2001
419
*/
Jul 10, 2006
Jul 10, 2006
420
extern DECLSPEC void SDLCALL SDL_FreeWAV(Uint8 * audio_buf);
Apr 26, 2001
Apr 26, 2001
421
Oct 19, 2009
Oct 19, 2009
422
423
424
425
426
427
428
/**
* This function takes a source format and rate and a destination format
* and rate, and initializes the \c cvt structure with information needed
* by SDL_ConvertAudio() to convert a buffer of audio data from one format
* to the other.
*
* \return -1 if the format conversion is not supported, 0 if there's
Aug 3, 2006
Aug 3, 2006
429
* no conversion needed, or 1 if the audio filter is set up.
Apr 26, 2001
Apr 26, 2001
430
*/
Jul 10, 2006
Jul 10, 2006
431
extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT * cvt,
Aug 24, 2006
Aug 24, 2006
432
SDL_AudioFormat src_format,
Jul 10, 2006
Jul 10, 2006
433
434
Uint8 src_channels,
int src_rate,
Aug 24, 2006
Aug 24, 2006
435
SDL_AudioFormat dst_format,
Jul 10, 2006
Jul 10, 2006
436
437
Uint8 dst_channels,
int dst_rate);
Apr 26, 2001
Apr 26, 2001
438
Oct 19, 2009
Oct 19, 2009
439
440
441
442
443
444
445
446
447
/**
* Once you have initialized the \c cvt structure using SDL_BuildAudioCVT(),
* created an audio buffer \c cvt->buf, and filled it with \c 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
* \c cvt->buf should be allocated after the \c cvt structure is initialized by
* SDL_BuildAudioCVT(), and should be \c cvt->len*cvt->len_mult bytes long.
Apr 26, 2001
Apr 26, 2001
448
*/
Jul 10, 2006
Jul 10, 2006
449
extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT * cvt);
Apr 26, 2001
Apr 26, 2001
450
451
#define SDL_MIX_MAXVOLUME 128
Oct 19, 2009
Oct 19, 2009
452
453
454
455
456
457
458
/**
* 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.
*/
Jul 10, 2006
Jul 10, 2006
459
460
extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 * dst, const Uint8 * src,
Uint32 len, int volume);
Apr 26, 2001
Apr 26, 2001
461
Oct 19, 2009
Oct 19, 2009
462
463
/**
* This works like SDL_MixAudio(), but you specify the audio format instead of
Aug 3, 2006
Aug 3, 2006
464
465
466
* 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
467
468
extern DECLSPEC void SDLCALL SDL_MixAudioFormat(Uint8 * dst,
const Uint8 * src,
Aug 3, 2006
Aug 3, 2006
469
470
471
SDL_AudioFormat format,
Uint32 len, int volume);
Oct 19, 2009
Oct 19, 2009
472
473
474
475
476
477
478
/**
* \name Audio lock functions
*
* The lock manipulated by these functions protects the callback function.
* During a SDL_LockAudio()/SDL_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 26, 2001
Apr 26, 2001
479
*/
Oct 19, 2009
Oct 19, 2009
480
/*@{*/
Apr 11, 2002
Apr 11, 2002
481
extern DECLSPEC void SDLCALL SDL_LockAudio(void);
Aug 3, 2006
Aug 3, 2006
482
extern DECLSPEC void SDLCALL SDL_LockAudioDevice(SDL_AudioDeviceID dev);
Apr 11, 2002
Apr 11, 2002
483
extern DECLSPEC void SDLCALL SDL_UnlockAudio(void);
Aug 3, 2006
Aug 3, 2006
484
extern DECLSPEC void SDLCALL SDL_UnlockAudioDevice(SDL_AudioDeviceID dev);
Oct 19, 2009
Oct 19, 2009
485
/*@}*//*Audio lock functions*/
Apr 26, 2001
Apr 26, 2001
486
Oct 19, 2009
Oct 19, 2009
487
488
/**
* This function shuts down audio processing and closes the audio device.
Apr 26, 2001
Apr 26, 2001
489
*/
Apr 11, 2002
Apr 11, 2002
490
extern DECLSPEC void SDLCALL SDL_CloseAudio(void);
Aug 3, 2006
Aug 3, 2006
491
492
extern DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID dev);
Oct 19, 2009
Oct 19, 2009
493
494
/**
* \return 1 if audio device is still functioning, zero if not, -1 on error.
Aug 3, 2006
Aug 3, 2006
495
496
*/
extern DECLSPEC int SDLCALL SDL_AudioDeviceConnected(SDL_AudioDeviceID dev);
Apr 26, 2001
Apr 26, 2001
497
498
499
500
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
501
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
502
}
Jul 10, 2006
Jul 10, 2006
503
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
504
505
506
507
#endif
#include "close_code.h"
#endif /* _SDL_audio_h */
Jul 10, 2006
Jul 10, 2006
508
509
/* vi: set ts=4 sw=4 expandtab: */