Skip to content

Latest commit

 

History

History
284 lines (250 loc) · 11 KB

SDL_audio.h

File metadata and controls

284 lines (250 loc) · 11 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 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
*/
Sep 21, 2009
Sep 21, 2009
23
24
25
26
/**
* @file SDL_audio.h
* Access to the raw audio mixing buffer for the SDL library
*/
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
41
42
43
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
extern "C" {
#endif
Sep 21, 2009
Sep 21, 2009
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* 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.
*
* @note The calculated values in this structure are calculated by SDL_OpenAudio()
*
*/
Jul 18, 2004
Jul 18, 2004
74
typedef struct SDL_AudioSpec {
Sep 21, 2009
Sep 21, 2009
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
int freq; /**< DSP frequency -- samples per second */
Uint16 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) */
/**
* This function is called when the audio device needs more data.
*
* @param[out] stream A pointer to the audio data buffer
* @param[in] len The length of the audio buffer in bytes.
*
* Once the callback returns, the buffer will no longer be valid.
* Stereo samples are stored in a LRLRLR ordering.
*/
Aug 20, 2004
Aug 20, 2004
91
void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len);
Apr 26, 2001
Apr 26, 2001
92
93
94
void *userdata;
} SDL_AudioSpec;
Sep 21, 2009
Sep 21, 2009
95
96
97
98
99
100
101
102
103
104
105
/**
* @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
106
107
108
#define AUDIO_U16 AUDIO_U16LSB
#define AUDIO_S16 AUDIO_S16LSB
Sep 21, 2009
Sep 21, 2009
109
110
111
112
/**
* @name Native audio byte ordering
*/
/*@{*/
Apr 26, 2001
Apr 26, 2001
113
114
115
116
117
118
119
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
#define AUDIO_U16SYS AUDIO_U16LSB
#define AUDIO_S16SYS AUDIO_S16LSB
#else
#define AUDIO_U16SYS AUDIO_U16MSB
#define AUDIO_S16SYS AUDIO_S16MSB
#endif
Sep 21, 2009
Sep 21, 2009
120
121
122
/*@}*/
/*@}*/
Apr 26, 2001
Apr 26, 2001
123
124
Sep 21, 2009
Sep 21, 2009
125
/** A structure to hold a set of audio conversion filters and buffers */
Apr 26, 2001
Apr 26, 2001
126
typedef struct SDL_AudioCVT {
Sep 21, 2009
Sep 21, 2009
127
128
129
130
131
132
133
134
135
int needed; /**< Set to 1 if conversion possible */
Uint16 src_format; /**< Source audio format */
Uint16 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 */
Aug 20, 2004
Aug 20, 2004
136
void (SDLCALL *filters[10])(struct SDL_AudioCVT *cvt, Uint16 format);
Sep 21, 2009
Sep 21, 2009
137
int filter_index; /**< Current audio conversion function */
Apr 26, 2001
Apr 26, 2001
138
139
140
141
142
} SDL_AudioCVT;
/* Function prototypes */
Sep 21, 2009
Sep 21, 2009
143
144
145
/**
* @name Audio Init and Quit
* These functions are used internally, and should not be used unless you
Apr 26, 2001
Apr 26, 2001
146
147
148
* have a specific need to specify the audio driver you want to use.
* You should normally use SDL_Init() or SDL_InitSubSystem().
*/
Sep 21, 2009
Sep 21, 2009
149
/*@{*/
Apr 11, 2002
Apr 11, 2002
150
151
extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name);
extern DECLSPEC void SDLCALL SDL_AudioQuit(void);
Sep 21, 2009
Sep 21, 2009
152
/*@}*/
Apr 26, 2001
Apr 26, 2001
153
Sep 21, 2009
Sep 21, 2009
154
155
/**
* This function fills the given character buffer with the name of the
Apr 26, 2001
Apr 26, 2001
156
157
158
* current audio driver, and returns a pointer to it if the audio driver has
* been initialized. It returns NULL if no driver has been initialized.
*/
Apr 11, 2002
Apr 11, 2002
159
extern DECLSPEC char * SDLCALL SDL_AudioDriverName(char *namebuf, int maxlen);
Apr 26, 2001
Apr 26, 2001
160
Sep 21, 2009
Sep 21, 2009
161
/**
Apr 26, 2001
Apr 26, 2001
162
163
164
165
166
167
168
169
170
171
172
173
174
* 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.
*
* 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.
Sep 21, 2009
Sep 21, 2009
175
176
*
* @sa SDL_AudioSpec
Apr 26, 2001
Apr 26, 2001
177
*/
Apr 11, 2002
Apr 11, 2002
178
extern DECLSPEC int SDLCALL SDL_OpenAudio(SDL_AudioSpec *desired, SDL_AudioSpec *obtained);
Apr 26, 2001
Apr 26, 2001
179
180
181
182
183
184
typedef enum {
SDL_AUDIO_STOPPED = 0,
SDL_AUDIO_PLAYING,
SDL_AUDIO_PAUSED
} SDL_audiostatus;
Sep 21, 2009
Sep 21, 2009
185
186
/** Get the current audio state */
Apr 11, 2002
Apr 11, 2002
187
extern DECLSPEC SDL_audiostatus SDLCALL SDL_GetAudioStatus(void);
Apr 26, 2001
Apr 26, 2001
188
Sep 21, 2009
Sep 21, 2009
189
/**
Apr 26, 2001
Apr 26, 2001
190
191
192
193
194
195
* 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
196
extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on);
Apr 26, 2001
Apr 26, 2001
197
Sep 21, 2009
Sep 21, 2009
198
/**
Apr 26, 2001
Apr 26, 2001
199
200
201
* 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:
Sep 21, 2009
Sep 21, 2009
202
* @code SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...); @endcode
Apr 26, 2001
Apr 26, 2001
203
204
205
206
207
208
209
210
211
212
213
214
*
* 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.
*/
Apr 11, 2002
Apr 11, 2002
215
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
216
Sep 21, 2009
Sep 21, 2009
217
/** Compatibility convenience function -- loads a WAV from a file */
Apr 26, 2001
Apr 26, 2001
218
219
220
#define SDL_LoadWAV(file, spec, audio_buf, audio_len) \
SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
Sep 21, 2009
Sep 21, 2009
221
/**
Apr 26, 2001
Apr 26, 2001
222
223
* This function frees data previously allocated with SDL_LoadWAV_RW()
*/
Apr 11, 2002
Apr 11, 2002
224
extern DECLSPEC void SDLCALL SDL_FreeWAV(Uint8 *audio_buf);
Apr 26, 2001
Apr 26, 2001
225
Sep 21, 2009
Sep 21, 2009
226
/**
Apr 26, 2001
Apr 26, 2001
227
228
229
230
* 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.
Sep 21, 2009
Sep 21, 2009
231
232
*
* @return This function returns 0, or -1 if there was an error.
Apr 26, 2001
Apr 26, 2001
233
*/
Apr 11, 2002
Apr 11, 2002
234
extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT *cvt,
Apr 26, 2001
Apr 26, 2001
235
236
237
Uint16 src_format, Uint8 src_channels, int src_rate,
Uint16 dst_format, Uint8 dst_channels, int dst_rate);
Sep 21, 2009
Sep 21, 2009
238
239
/**
* Once you have initialized the 'cvt' structure using SDL_BuildAudioCVT(),
Apr 26, 2001
Apr 26, 2001
240
241
242
243
244
245
246
* 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.
*/
Apr 11, 2002
Apr 11, 2002
247
extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT *cvt);
Apr 26, 2001
Apr 26, 2001
248
Sep 21, 2009
Sep 21, 2009
249
250
251
#define SDL_MIX_MAXVOLUME 128
/**
Apr 26, 2001
Apr 26, 2001
252
253
254
255
256
257
* 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.
*/
Apr 11, 2002
Apr 11, 2002
258
extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, Uint32 len, int volume);
Apr 26, 2001
Apr 26, 2001
259
Sep 21, 2009
Sep 21, 2009
260
261
/**
* @name Audio Locks
Apr 26, 2001
Apr 26, 2001
262
263
264
265
266
* 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.
*/
Sep 21, 2009
Sep 21, 2009
267
/*@{*/
Apr 11, 2002
Apr 11, 2002
268
269
extern DECLSPEC void SDLCALL SDL_LockAudio(void);
extern DECLSPEC void SDLCALL SDL_UnlockAudio(void);
Sep 21, 2009
Sep 21, 2009
270
/*@}*/
Apr 26, 2001
Apr 26, 2001
271
Sep 21, 2009
Sep 21, 2009
272
/**
Apr 26, 2001
Apr 26, 2001
273
274
* This function shuts down audio processing and closes the audio device.
*/
Apr 11, 2002
Apr 11, 2002
275
extern DECLSPEC void SDLCALL SDL_CloseAudio(void);
Apr 26, 2001
Apr 26, 2001
276
277
278
279
280
281
282
283
284
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif /* _SDL_audio_h */