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

Latest commit

 

History

History
612 lines (553 loc) · 20.8 KB

SDL_alsa_audio.c

File metadata and controls

612 lines (553 loc) · 20.8 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
/* Allow access to a raw mixing buffer */
#include <sys/types.h>
May 28, 2006
May 28, 2006
27
#include <signal.h> /* For kill() */
Apr 26, 2001
Apr 26, 2001
28
29
#include "SDL_timer.h"
Feb 16, 2006
Feb 16, 2006
30
31
32
#include "SDL_audio.h"
#include "../SDL_audiomem.h"
#include "../SDL_audio_c.h"
Apr 26, 2001
Apr 26, 2001
33
34
#include "SDL_alsa_audio.h"
Feb 16, 2006
Feb 16, 2006
35
#ifdef SDL_AUDIO_DRIVER_ALSA_DYNAMIC
Mar 2, 2004
Mar 2, 2004
36
37
38
39
40
41
42
43
#include <dlfcn.h>
#include "SDL_name.h"
#include "SDL_loadso.h"
#else
#define SDL_NAME(X) X
#endif
Apr 26, 2001
Apr 26, 2001
44
45
46
/* The tag name used by ALSA audio */
#define DRIVER_NAME "alsa"
Apr 15, 2002
Apr 15, 2002
47
/* The default ALSA audio driver */
Jan 4, 2004
Jan 4, 2004
48
#define DEFAULT_DEVICE "default"
Apr 26, 2001
Apr 26, 2001
49
50
/* Audio driver functions */
May 29, 2006
May 29, 2006
51
52
53
54
55
static int ALSA_OpenAudio(_THIS, SDL_AudioSpec * spec);
static void ALSA_WaitAudio(_THIS);
static void ALSA_PlayAudio(_THIS);
static Uint8 *ALSA_GetAudioBuf(_THIS);
static void ALSA_CloseAudio(_THIS);
Apr 15, 2002
Apr 15, 2002
56
Feb 16, 2006
Feb 16, 2006
57
#ifdef SDL_AUDIO_DRIVER_ALSA_DYNAMIC
Mar 2, 2004
Mar 2, 2004
58
Feb 16, 2006
Feb 16, 2006
59
static const char *alsa_library = SDL_AUDIO_DRIVER_ALSA_DYNAMIC;
Mar 2, 2004
Mar 2, 2004
60
61
62
static void *alsa_handle = NULL;
static int alsa_loaded = 0;
May 28, 2006
May 28, 2006
63
64
static int (*SDL_snd_pcm_open) (snd_pcm_t ** pcm, const char *name,
snd_pcm_stream_t stream, int mode);
May 29, 2006
May 29, 2006
65
66
67
68
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
static int (*SDL_NAME(snd_pcm_open)) (snd_pcm_t ** pcm, const char *name,
snd_pcm_stream_t stream, int mode);
static int (*SDL_NAME(snd_pcm_close)) (snd_pcm_t * pcm);
static snd_pcm_sframes_t(*SDL_NAME(snd_pcm_writei)) (snd_pcm_t * pcm,
const void *buffer,
snd_pcm_uframes_t size);
static int (*SDL_NAME(snd_pcm_resume)) (snd_pcm_t * pcm);
static int (*SDL_NAME(snd_pcm_prepare)) (snd_pcm_t * pcm);
static int (*SDL_NAME(snd_pcm_drain)) (snd_pcm_t * pcm);
static const char *(*SDL_NAME(snd_strerror)) (int errnum);
static size_t(*SDL_NAME(snd_pcm_hw_params_sizeof)) (void);
static size_t(*SDL_NAME(snd_pcm_sw_params_sizeof)) (void);
static int (*SDL_NAME(snd_pcm_hw_params_any)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t * params);
static int (*SDL_NAME(snd_pcm_hw_params_set_access)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t *
params,
snd_pcm_access_t
access);
static int (*SDL_NAME(snd_pcm_hw_params_set_format)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t *
params,
snd_pcm_format_t val);
static int (*SDL_NAME(snd_pcm_hw_params_set_channels)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t *
params,
unsigned int val);
static int (*SDL_NAME(snd_pcm_hw_params_get_channels)) (const
snd_pcm_hw_params_t *
params);
May 28, 2006
May 28, 2006
95
static unsigned int
May 29, 2006
May 29, 2006
96
97
98
99
100
(*SDL_NAME(snd_pcm_hw_params_set_rate_near)) (snd_pcm_t *
pcm,
snd_pcm_hw_params_t
* params,
unsigned int val, int *dir);
May 28, 2006
May 28, 2006
101
static snd_pcm_uframes_t
May 29, 2006
May 29, 2006
102
103
104
105
106
(*SDL_NAME(snd_pcm_hw_params_set_period_size_near)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t
* params,
snd_pcm_uframes_t
val, int *dir);
May 28, 2006
May 28, 2006
107
static snd_pcm_sframes_t
May 29, 2006
May 29, 2006
108
109
110
(*SDL_NAME(snd_pcm_hw_params_get_period_size)) (const
snd_pcm_hw_params_t
* params);
May 28, 2006
May 28, 2006
111
static unsigned int
May 29, 2006
May 29, 2006
112
113
114
115
116
117
118
119
120
(*SDL_NAME(snd_pcm_hw_params_set_periods_near)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t
* params,
unsigned int val,
int *dir);
static int (*SDL_NAME(snd_pcm_hw_params_get_periods)) (snd_pcm_hw_params_t *
params);
static int (*SDL_NAME(snd_pcm_hw_params)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t * params);
Mar 19, 2006
Mar 19, 2006
121
122
/*
*/
May 29, 2006
May 29, 2006
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
static int (*SDL_NAME(snd_pcm_sw_params_current)) (snd_pcm_t * pcm,
snd_pcm_sw_params_t *
swparams);
static int (*SDL_NAME(snd_pcm_sw_params_set_start_threshold)) (snd_pcm_t *
pcm,
snd_pcm_sw_params_t
* params,
snd_pcm_uframes_t
val);
static int (*SDL_NAME(snd_pcm_sw_params_set_avail_min)) (snd_pcm_t * pcm,
snd_pcm_sw_params_t
* params,
snd_pcm_uframes_t
val);
static int (*SDL_NAME(snd_pcm_sw_params)) (snd_pcm_t * pcm,
snd_pcm_sw_params_t * params);
static int (*SDL_NAME(snd_pcm_nonblock)) (snd_pcm_t * pcm, int nonblock);
Mar 2, 2004
Mar 2, 2004
140
#define snd_pcm_hw_params_sizeof SDL_NAME(snd_pcm_hw_params_sizeof)
Mar 19, 2006
Mar 19, 2006
141
#define snd_pcm_sw_params_sizeof SDL_NAME(snd_pcm_sw_params_sizeof)
Mar 2, 2004
Mar 2, 2004
142
Oct 20, 2005
Oct 20, 2005
143
/* cast funcs to char* first, to please GCC's strict aliasing rules. */
May 28, 2006
May 28, 2006
144
145
146
147
static struct
{
const char *name;
void **func;
Mar 2, 2004
Mar 2, 2004
148
} alsa_functions[] = {
May 28, 2006
May 28, 2006
149
{
May 29, 2006
May 29, 2006
150
151
152
153
154
155
156
"snd_pcm_open", (void **) (char *) &SDL_NAME(snd_pcm_open)}, {
"snd_pcm_close", (void **) (char *) &SDL_NAME(snd_pcm_close)}, {
"snd_pcm_writei", (void **) (char *) &SDL_NAME(snd_pcm_writei)}, {
"snd_pcm_resume", (void **) (char *) &SDL_NAME(snd_pcm_resume)}, {
"snd_pcm_prepare", (void **) (char *) &SDL_NAME(snd_pcm_prepare)}, {
"snd_pcm_drain", (void **) (char *) &SDL_NAME(snd_pcm_drain)}, {
"snd_strerror", (void **) (char *) &SDL_NAME(snd_strerror)}, {
May 28, 2006
May 28, 2006
157
"snd_pcm_hw_params_sizeof",
May 29, 2006
May 29, 2006
158
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_sizeof)}, {
May 28, 2006
May 28, 2006
159
"snd_pcm_sw_params_sizeof",
May 29, 2006
May 29, 2006
160
(void **) (char *) &SDL_NAME(snd_pcm_sw_params_sizeof)}, {
May 28, 2006
May 28, 2006
161
"snd_pcm_hw_params_any",
May 29, 2006
May 29, 2006
162
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_any)}, {
May 28, 2006
May 28, 2006
163
"snd_pcm_hw_params_set_access",
May 29, 2006
May 29, 2006
164
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_set_access)}, {
May 28, 2006
May 28, 2006
165
"snd_pcm_hw_params_set_format",
May 29, 2006
May 29, 2006
166
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_set_format)}, {
May 28, 2006
May 28, 2006
167
"snd_pcm_hw_params_set_channels",
May 29, 2006
May 29, 2006
168
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_set_channels)}, {
May 28, 2006
May 28, 2006
169
"snd_pcm_hw_params_get_channels",
May 29, 2006
May 29, 2006
170
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_get_channels)}, {
May 28, 2006
May 28, 2006
171
"snd_pcm_hw_params_set_rate_near",
May 29, 2006
May 29, 2006
172
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_set_rate_near)}, {
May 28, 2006
May 28, 2006
173
"snd_pcm_hw_params_set_period_size_near", (void **) (char *)
May 29, 2006
May 29, 2006
174
&SDL_NAME(snd_pcm_hw_params_set_period_size_near)}, {
May 28, 2006
May 28, 2006
175
"snd_pcm_hw_params_get_period_size",
May 29, 2006
May 29, 2006
176
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_get_period_size)},
May 28, 2006
May 28, 2006
177
178
{
"snd_pcm_hw_params_set_periods_near", (void **) (char *)
May 29, 2006
May 29, 2006
179
&SDL_NAME(snd_pcm_hw_params_set_periods_near)}, {
May 28, 2006
May 28, 2006
180
"snd_pcm_hw_params_get_periods",
May 29, 2006
May 29, 2006
181
182
(void **) (char *) &SDL_NAME(snd_pcm_hw_params_get_periods)}, {
"snd_pcm_hw_params", (void **) (char *) &SDL_NAME(snd_pcm_hw_params)}, {
May 28, 2006
May 28, 2006
183
"snd_pcm_sw_params_current",
May 29, 2006
May 29, 2006
184
(void **) (char *) &SDL_NAME(snd_pcm_sw_params_current)}, {
May 28, 2006
May 28, 2006
185
"snd_pcm_sw_params_set_start_threshold", (void **) (char *)
May 29, 2006
May 29, 2006
186
&SDL_NAME(snd_pcm_sw_params_set_start_threshold)}, {
May 28, 2006
May 28, 2006
187
"snd_pcm_sw_params_set_avail_min",
May 29, 2006
May 29, 2006
188
189
190
(void **) (char *) &SDL_NAME(snd_pcm_sw_params_set_avail_min)}, {
"snd_pcm_sw_params", (void **) (char *) &SDL_NAME(snd_pcm_sw_params)}, {
"snd_pcm_nonblock", (void **) (char *) &SDL_NAME(snd_pcm_nonblock)},};
May 28, 2006
May 28, 2006
191
192
static void
May 29, 2006
May 29, 2006
193
UnloadALSALibrary(void)
May 28, 2006
May 28, 2006
194
195
{
if (alsa_loaded) {
Mar 2, 2004
Mar 2, 2004
196
/* SDL_UnloadObject(alsa_handle);*/
May 29, 2006
May 29, 2006
197
dlclose(alsa_handle);
May 28, 2006
May 28, 2006
198
199
200
alsa_handle = NULL;
alsa_loaded = 0;
}
Mar 2, 2004
Mar 2, 2004
201
202
}
May 28, 2006
May 28, 2006
203
static int
May 29, 2006
May 29, 2006
204
LoadALSALibrary(void)
May 28, 2006
May 28, 2006
205
206
{
int i, retval = -1;
Mar 2, 2004
Mar 2, 2004
207
208
/* alsa_handle = SDL_LoadObject(alsa_library);*/
May 29, 2006
May 29, 2006
209
alsa_handle = dlopen(alsa_library, RTLD_NOW);
May 28, 2006
May 28, 2006
210
211
212
if (alsa_handle) {
alsa_loaded = 1;
retval = 0;
May 29, 2006
May 29, 2006
213
for (i = 0; i < SDL_arraysize(alsa_functions); i++) {
Mar 2, 2004
Mar 2, 2004
214
/* *alsa_functions[i].func = SDL_LoadFunction(alsa_handle,alsa_functions[i].name);*/
Feb 16, 2006
Feb 16, 2006
215
#if HAVE_DLVSYM
May 28, 2006
May 28, 2006
216
*alsa_functions[i].func =
May 29, 2006
May 29, 2006
217
dlvsym(alsa_handle, alsa_functions[i].name, "ALSA_0.9");
May 28, 2006
May 28, 2006
218
if (!*alsa_functions[i].func)
Aug 21, 2004
Aug 21, 2004
219
#endif
May 28, 2006
May 28, 2006
220
*alsa_functions[i].func =
May 29, 2006
May 29, 2006
221
dlsym(alsa_handle, alsa_functions[i].name);
May 28, 2006
May 28, 2006
222
223
if (!*alsa_functions[i].func) {
retval = -1;
May 29, 2006
May 29, 2006
224
UnloadALSALibrary();
May 28, 2006
May 28, 2006
225
226
227
228
229
break;
}
}
}
return retval;
Mar 2, 2004
Mar 2, 2004
230
231
232
233
}
#else
May 28, 2006
May 28, 2006
234
static void
May 29, 2006
May 29, 2006
235
UnloadALSALibrary(void)
May 28, 2006
May 28, 2006
236
237
{
return;
Mar 2, 2004
Mar 2, 2004
238
239
}
May 28, 2006
May 28, 2006
240
static int
May 29, 2006
May 29, 2006
241
LoadALSALibrary(void)
May 28, 2006
May 28, 2006
242
243
{
return 0;
Mar 2, 2004
Mar 2, 2004
244
245
}
Feb 16, 2006
Feb 16, 2006
246
#endif /* SDL_AUDIO_DRIVER_ALSA_DYNAMIC */
Mar 2, 2004
Mar 2, 2004
247
May 28, 2006
May 28, 2006
248
static const char *
May 29, 2006
May 29, 2006
249
get_audio_device(int channels)
Apr 26, 2001
Apr 26, 2001
250
{
May 28, 2006
May 28, 2006
251
252
const char *device;
May 29, 2006
May 29, 2006
253
device = SDL_getenv("AUDIODEV"); /* Is there a standard variable name? */
May 28, 2006
May 28, 2006
254
255
256
257
258
259
260
261
262
if (device == NULL) {
if (channels == 6)
device = "surround51";
else if (channels == 4)
device = "surround40";
else
device = DEFAULT_DEVICE;
}
return device;
Apr 26, 2001
Apr 26, 2001
263
264
265
266
}
/* Audio driver bootstrap functions */
May 28, 2006
May 28, 2006
267
static int
May 29, 2006
May 29, 2006
268
Audio_Available(void)
Apr 26, 2001
Apr 26, 2001
269
{
May 28, 2006
May 28, 2006
270
271
272
273
274
int available;
int status;
snd_pcm_t *handle;
available = 0;
May 29, 2006
May 29, 2006
275
if (LoadALSALibrary() < 0) {
May 28, 2006
May 28, 2006
276
277
278
return available;
}
status =
May 29, 2006
May 29, 2006
279
280
SDL_NAME(snd_pcm_open) (&handle, get_audio_device(2),
SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
May 28, 2006
May 28, 2006
281
282
if (status >= 0) {
available = 1;
May 29, 2006
May 29, 2006
283
SDL_NAME(snd_pcm_close) (handle);
May 28, 2006
May 28, 2006
284
}
May 29, 2006
May 29, 2006
285
UnloadALSALibrary();
May 28, 2006
May 28, 2006
286
return (available);
Apr 26, 2001
Apr 26, 2001
287
288
}
May 28, 2006
May 28, 2006
289
static void
May 29, 2006
May 29, 2006
290
Audio_DeleteDevice(SDL_AudioDevice * device)
Apr 26, 2001
Apr 26, 2001
291
{
May 29, 2006
May 29, 2006
292
293
294
SDL_free(device->hidden);
SDL_free(device);
UnloadALSALibrary();
Apr 26, 2001
Apr 26, 2001
295
296
}
May 28, 2006
May 28, 2006
297
static SDL_AudioDevice *
May 29, 2006
May 29, 2006
298
Audio_CreateDevice(int devindex)
Apr 26, 2001
Apr 26, 2001
299
{
May 28, 2006
May 28, 2006
300
301
302
SDL_AudioDevice *this;
/* Initialize all variables that we clean on shutdown */
May 29, 2006
May 29, 2006
303
304
LoadALSALibrary();
this = (SDL_AudioDevice *) SDL_malloc(sizeof(SDL_AudioDevice));
May 28, 2006
May 28, 2006
305
if (this) {
May 29, 2006
May 29, 2006
306
SDL_memset(this, 0, (sizeof *this));
May 28, 2006
May 28, 2006
307
this->hidden = (struct SDL_PrivateAudioData *)
May 29, 2006
May 29, 2006
308
SDL_malloc((sizeof *this->hidden));
May 28, 2006
May 28, 2006
309
310
}
if ((this == NULL) || (this->hidden == NULL)) {
May 29, 2006
May 29, 2006
311
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
312
if (this) {
May 29, 2006
May 29, 2006
313
SDL_free(this);
May 28, 2006
May 28, 2006
314
315
316
}
return (0);
}
May 29, 2006
May 29, 2006
317
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
May 28, 2006
May 28, 2006
318
319
320
321
322
323
324
325
326
327
328
/* Set the function pointers */
this->OpenAudio = ALSA_OpenAudio;
this->WaitAudio = ALSA_WaitAudio;
this->PlayAudio = ALSA_PlayAudio;
this->GetAudioBuf = ALSA_GetAudioBuf;
this->CloseAudio = ALSA_CloseAudio;
this->free = Audio_DeleteDevice;
return this;
Apr 26, 2001
Apr 26, 2001
329
330
331
}
AudioBootStrap ALSA_bootstrap = {
May 28, 2006
May 28, 2006
332
333
DRIVER_NAME, "ALSA 0.9 PCM audio",
Audio_Available, Audio_CreateDevice
Apr 26, 2001
Apr 26, 2001
334
335
336
};
/* This function waits until it is possible to write a full sound buffer */
May 28, 2006
May 28, 2006
337
static void
May 29, 2006
May 29, 2006
338
ALSA_WaitAudio(_THIS)
Apr 26, 2001
Apr 26, 2001
339
{
May 28, 2006
May 28, 2006
340
341
342
343
344
345
346
/* Check to see if the thread-parent process is still alive */
{
static int cnt = 0;
/* Note that this only works with thread implementations
that use a different process id for each thread.
*/
if (parent && (((++cnt) % 10) == 0)) { /* Check every 10 loops */
May 29, 2006
May 29, 2006
347
if (kill(parent, 0) < 0) {
May 28, 2006
May 28, 2006
348
349
350
351
this->enabled = 0;
}
}
}
Apr 26, 2001
Apr 26, 2001
352
353
}
May 28, 2006
May 28, 2006
354
static void
May 29, 2006
May 29, 2006
355
ALSA_PlayAudio(_THIS)
Apr 26, 2001
Apr 26, 2001
356
{
May 28, 2006
May 28, 2006
357
358
359
360
361
362
363
364
int status;
int sample_len;
signed short *sample_buf;
sample_len = this->spec.samples;
sample_buf = (signed short *) mixbuf;
while (sample_len > 0) {
status =
May 29, 2006
May 29, 2006
365
SDL_NAME(snd_pcm_writei) (pcm_handle, sample_buf, sample_len);
May 28, 2006
May 28, 2006
366
367
if (status < 0) {
if (status == -EAGAIN) {
May 29, 2006
May 29, 2006
368
SDL_Delay(1);
May 28, 2006
May 28, 2006
369
370
371
372
continue;
}
if (status == -ESTRPIPE) {
do {
May 29, 2006
May 29, 2006
373
374
SDL_Delay(1);
status = SDL_NAME(snd_pcm_resume) (pcm_handle);
May 28, 2006
May 28, 2006
375
376
377
378
}
while (status == -EAGAIN);
}
if (status < 0) {
May 29, 2006
May 29, 2006
379
status = SDL_NAME(snd_pcm_prepare) (pcm_handle);
May 28, 2006
May 28, 2006
380
381
382
383
384
385
386
387
388
389
390
}
if (status < 0) {
/* Hmm, not much we can do - abort */
this->enabled = 0;
return;
}
continue;
}
sample_buf += status * this->spec.channels;
sample_len -= status;
}
Apr 26, 2001
Apr 26, 2001
391
392
}
May 28, 2006
May 28, 2006
393
static Uint8 *
May 29, 2006
May 29, 2006
394
ALSA_GetAudioBuf(_THIS)
Apr 26, 2001
Apr 26, 2001
395
{
May 28, 2006
May 28, 2006
396
return (mixbuf);
Apr 26, 2001
Apr 26, 2001
397
398
}
May 28, 2006
May 28, 2006
399
static void
May 29, 2006
May 29, 2006
400
ALSA_CloseAudio(_THIS)
Apr 26, 2001
Apr 26, 2001
401
{
May 28, 2006
May 28, 2006
402
if (mixbuf != NULL) {
May 29, 2006
May 29, 2006
403
SDL_FreeAudioMem(mixbuf);
May 28, 2006
May 28, 2006
404
405
406
mixbuf = NULL;
}
if (pcm_handle) {
May 29, 2006
May 29, 2006
407
408
SDL_NAME(snd_pcm_drain) (pcm_handle);
SDL_NAME(snd_pcm_close) (pcm_handle);
May 28, 2006
May 28, 2006
409
410
pcm_handle = NULL;
}
Apr 26, 2001
Apr 26, 2001
411
412
}
May 28, 2006
May 28, 2006
413
static int
May 29, 2006
May 29, 2006
414
ALSA_OpenAudio(_THIS, SDL_AudioSpec * spec)
Apr 26, 2001
Apr 26, 2001
415
{
May 28, 2006
May 28, 2006
416
417
418
419
420
421
422
423
424
425
int status;
snd_pcm_hw_params_t *hwparams;
snd_pcm_sw_params_t *swparams;
snd_pcm_format_t format;
snd_pcm_uframes_t frames;
Uint16 test_format;
/* Open the audio device */
/* Name of device should depend on # channels in spec */
status =
May 29, 2006
May 29, 2006
426
427
428
SDL_NAME(snd_pcm_open) (&pcm_handle,
get_audio_device(spec->channels),
SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
May 28, 2006
May 28, 2006
429
430
if (status < 0) {
May 29, 2006
May 29, 2006
431
432
SDL_SetError("Couldn't open audio device: %s",
SDL_NAME(snd_strerror) (status));
May 28, 2006
May 28, 2006
433
434
435
436
return (-1);
}
/* Figure out what the hardware is capable of */
May 29, 2006
May 29, 2006
437
438
snd_pcm_hw_params_alloca(&hwparams);
status = SDL_NAME(snd_pcm_hw_params_any) (pcm_handle, hwparams);
May 28, 2006
May 28, 2006
439
if (status < 0) {
May 29, 2006
May 29, 2006
440
441
442
SDL_SetError("Couldn't get hardware config: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
443
444
445
446
447
return (-1);
}
/* SDL only uses interleaved sample output */
status =
May 29, 2006
May 29, 2006
448
449
SDL_NAME(snd_pcm_hw_params_set_access) (pcm_handle, hwparams,
SND_PCM_ACCESS_RW_INTERLEAVED);
May 28, 2006
May 28, 2006
450
if (status < 0) {
May 29, 2006
May 29, 2006
451
452
453
SDL_SetError("Couldn't set interleaved access: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
454
455
456
457
458
return (-1);
}
/* Try for a closest match on audio format */
status = -1;
May 29, 2006
May 29, 2006
459
for (test_format = SDL_FirstAudioFormat(spec->format);
May 28, 2006
May 28, 2006
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
test_format && (status < 0);) {
switch (test_format) {
case AUDIO_U8:
format = SND_PCM_FORMAT_U8;
break;
case AUDIO_S8:
format = SND_PCM_FORMAT_S8;
break;
case AUDIO_S16LSB:
format = SND_PCM_FORMAT_S16_LE;
break;
case AUDIO_S16MSB:
format = SND_PCM_FORMAT_S16_BE;
break;
case AUDIO_U16LSB:
format = SND_PCM_FORMAT_U16_LE;
break;
case AUDIO_U16MSB:
format = SND_PCM_FORMAT_U16_BE;
break;
default:
format = 0;
break;
}
if (format != 0) {
status =
May 29, 2006
May 29, 2006
486
487
SDL_NAME(snd_pcm_hw_params_set_format) (pcm_handle,
hwparams, format);
May 28, 2006
May 28, 2006
488
489
}
if (status < 0) {
May 29, 2006
May 29, 2006
490
test_format = SDL_NextAudioFormat();
May 28, 2006
May 28, 2006
491
492
493
}
}
if (status < 0) {
May 29, 2006
May 29, 2006
494
495
SDL_SetError("Couldn't find any hardware audio formats");
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
496
497
498
499
500
501
return (-1);
}
spec->format = test_format;
/* Set the number of channels */
status =
May 29, 2006
May 29, 2006
502
503
SDL_NAME(snd_pcm_hw_params_set_channels) (pcm_handle, hwparams,
spec->channels);
May 28, 2006
May 28, 2006
504
if (status < 0) {
May 29, 2006
May 29, 2006
505
status = SDL_NAME(snd_pcm_hw_params_get_channels) (hwparams);
May 28, 2006
May 28, 2006
506
if ((status <= 0) || (status > 2)) {
May 29, 2006
May 29, 2006
507
508
SDL_SetError("Couldn't set audio channels");
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
509
510
511
512
513
514
515
return (-1);
}
spec->channels = status;
}
/* Set the audio rate */
status =
May 29, 2006
May 29, 2006
516
517
SDL_NAME(snd_pcm_hw_params_set_rate_near) (pcm_handle, hwparams,
spec->freq, NULL);
May 28, 2006
May 28, 2006
518
if (status < 0) {
May 29, 2006
May 29, 2006
519
520
521
SDL_SetError("Couldn't set audio frequency: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
522
523
524
525
526
527
528
return (-1);
}
spec->freq = status;
/* Set the buffer size, in samples */
frames = spec->samples;
frames =
May 29, 2006
May 29, 2006
529
530
531
SDL_NAME(snd_pcm_hw_params_set_period_size_near) (pcm_handle,
hwparams, frames,
NULL);
May 28, 2006
May 28, 2006
532
spec->samples = frames;
May 29, 2006
May 29, 2006
533
534
SDL_NAME(snd_pcm_hw_params_set_periods_near) (pcm_handle, hwparams, 2,
NULL);
May 28, 2006
May 28, 2006
535
536
/* "set" the hardware with the desired parameters */
May 29, 2006
May 29, 2006
537
status = SDL_NAME(snd_pcm_hw_params) (pcm_handle, hwparams);
May 28, 2006
May 28, 2006
538
if (status < 0) {
May 29, 2006
May 29, 2006
539
540
541
SDL_SetError("Couldn't set hardware audio parameters: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
542
543
return (-1);
}
Mar 19, 2006
Mar 19, 2006
544
Mar 19, 2006
Mar 19, 2006
545
/* This is useful for debugging... */
Mar 19, 2006
Mar 19, 2006
546
/*
Mar 19, 2006
Mar 19, 2006
547
{ snd_pcm_sframes_t bufsize; int fragments;
Mar 19, 2006
Mar 19, 2006
548
549
550
551
552
553
554
bufsize = SDL_NAME(snd_pcm_hw_params_get_period_size)(hwparams);
fragments = SDL_NAME(snd_pcm_hw_params_get_periods)(hwparams);
fprintf(stderr, "ALSA: bufsize = %ld, fragments = %d\n", bufsize, fragments);
}
*/
May 28, 2006
May 28, 2006
555
/* Set the software parameters */
May 29, 2006
May 29, 2006
556
557
snd_pcm_sw_params_alloca(&swparams);
status = SDL_NAME(snd_pcm_sw_params_current) (pcm_handle, swparams);
May 28, 2006
May 28, 2006
558
if (status < 0) {
May 29, 2006
May 29, 2006
559
560
561
SDL_SetError("Couldn't get software config: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
562
563
564
return (-1);
}
status =
May 29, 2006
May 29, 2006
565
566
SDL_NAME(snd_pcm_sw_params_set_start_threshold) (pcm_handle,
swparams, 0);
May 28, 2006
May 28, 2006
567
if (status < 0) {
May 29, 2006
May 29, 2006
568
569
570
SDL_SetError("Couldn't set start threshold: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
571
572
573
return (-1);
}
status =
May 29, 2006
May 29, 2006
574
575
SDL_NAME(snd_pcm_sw_params_set_avail_min) (pcm_handle, swparams,
frames);
May 28, 2006
May 28, 2006
576
if (status < 0) {
May 29, 2006
May 29, 2006
577
578
579
SDL_SetError("Couldn't set avail min: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
580
581
return (-1);
}
May 29, 2006
May 29, 2006
582
status = SDL_NAME(snd_pcm_sw_params) (pcm_handle, swparams);
May 28, 2006
May 28, 2006
583
if (status < 0) {
May 29, 2006
May 29, 2006
584
585
586
SDL_SetError("Couldn't set software audio parameters: %s",
SDL_NAME(snd_strerror) (status));
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
587
588
589
590
return (-1);
}
/* Calculate the final parameters for this audio specification */
May 29, 2006
May 29, 2006
591
SDL_CalculateAudioSpec(spec);
May 28, 2006
May 28, 2006
592
593
594
/* Allocate mixing buffer */
mixlen = spec->size;
May 29, 2006
May 29, 2006
595
mixbuf = (Uint8 *) SDL_AllocAudioMem(mixlen);
May 28, 2006
May 28, 2006
596
if (mixbuf == NULL) {
May 29, 2006
May 29, 2006
597
ALSA_CloseAudio(this);
May 28, 2006
May 28, 2006
598
599
return (-1);
}
May 29, 2006
May 29, 2006
600
SDL_memset(mixbuf, spec->silence, spec->size);
May 28, 2006
May 28, 2006
601
602
/* Get the parent process id (we're the parent of the audio thread) */
May 29, 2006
May 29, 2006
603
parent = getpid();
May 28, 2006
May 28, 2006
604
605
/* Switch to blocking mode for playback */
May 29, 2006
May 29, 2006
606
SDL_NAME(snd_pcm_nonblock) (pcm_handle, 0);
May 28, 2006
May 28, 2006
607
608
609
/* We're ready to rock and roll. :-) */
return (0);
Apr 26, 2001
Apr 26, 2001
610
}
May 28, 2006
May 28, 2006
611
612
/* vi: set ts=4 sw=4 expandtab: */