Skip to content

Latest commit

 

History

History
326 lines (283 loc) · 8.04 KB

SDL_alsa_audio.c

File metadata and controls

326 lines (283 loc) · 8.04 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
*/
/* Allow access to a raw mixing buffer */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/time.h>
#include "SDL_audio.h"
#include "SDL_error.h"
#include "SDL_audiomem.h"
#include "SDL_audio_c.h"
#include "SDL_timer.h"
#include "SDL_alsa_audio.h"
/* 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 */
Apr 15, 2002
Apr 15, 2002
51
52
53
54
55
56
57
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);
static const char *get_audio_device()
Apr 26, 2001
Apr 26, 2001
58
{
Apr 15, 2002
Apr 15, 2002
59
60
61
62
63
64
65
const char *device;
device = getenv("AUDIODEV"); /* Is there a standard variable name? */
if ( device == NULL ) {
device = DEFAULT_DEVICE;
}
return device;
Apr 26, 2001
Apr 26, 2001
66
67
68
69
70
71
72
}
/* Audio driver bootstrap functions */
static int Audio_Available(void)
{
int available;
Apr 15, 2002
Apr 15, 2002
73
int status;
Apr 26, 2001
Apr 26, 2001
74
75
76
snd_pcm_t *handle;
available = 0;
Nov 17, 2002
Nov 17, 2002
77
status = snd_pcm_open(&handle, get_audio_device(), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
Apr 15, 2002
Apr 15, 2002
78
79
80
if ( status >= 0 ) {
available = 1;
snd_pcm_close(handle);
Apr 26, 2001
Apr 26, 2001
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
}
return(available);
}
static void Audio_DeleteDevice(SDL_AudioDevice *device)
{
free(device->hidden);
free(device);
}
static SDL_AudioDevice *Audio_CreateDevice(int devindex)
{
SDL_AudioDevice *this;
/* Initialize all variables that we clean on shutdown */
this = (SDL_AudioDevice *)malloc(sizeof(SDL_AudioDevice));
if ( this ) {
memset(this, 0, (sizeof *this));
this->hidden = (struct SDL_PrivateAudioData *)
malloc((sizeof *this->hidden));
}
if ( (this == NULL) || (this->hidden == NULL) ) {
SDL_OutOfMemory();
if ( this ) {
free(this);
}
return(0);
}
memset(this->hidden, 0, (sizeof *this->hidden));
/* Set the function pointers */
Apr 15, 2002
Apr 15, 2002
112
113
114
115
116
this->OpenAudio = ALSA_OpenAudio;
this->WaitAudio = ALSA_WaitAudio;
this->PlayAudio = ALSA_PlayAudio;
this->GetAudioBuf = ALSA_GetAudioBuf;
this->CloseAudio = ALSA_CloseAudio;
Apr 26, 2001
Apr 26, 2001
117
118
119
120
121
122
123
this->free = Audio_DeleteDevice;
return this;
}
AudioBootStrap ALSA_bootstrap = {
Apr 15, 2002
Apr 15, 2002
124
DRIVER_NAME, "ALSA 0.9 PCM audio",
Apr 26, 2001
Apr 26, 2001
125
126
127
128
Audio_Available, Audio_CreateDevice
};
/* This function waits until it is possible to write a full sound buffer */
Apr 15, 2002
Apr 15, 2002
129
static void ALSA_WaitAudio(_THIS)
Apr 26, 2001
Apr 26, 2001
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
/* 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 */
if ( kill(parent, 0) < 0 ) {
this->enabled = 0;
}
}
}
}
Apr 15, 2002
Apr 15, 2002
144
static void ALSA_PlayAudio(_THIS)
Apr 26, 2001
Apr 26, 2001
145
{
Apr 15, 2002
Apr 15, 2002
146
147
148
int status;
int sample_len;
signed short *sample_buf;
Jan 4, 2004
Jan 4, 2004
149
Apr 15, 2002
Apr 15, 2002
150
151
152
153
154
155
sample_len = this->spec.samples;
sample_buf = (signed short *)mixbuf;
while ( sample_len > 0 ) {
status = snd_pcm_writei(pcm_handle, sample_buf, sample_len);
if ( status < 0 ) {
if ( status == -EAGAIN ) {
Jan 4, 2004
Jan 4, 2004
156
SDL_Delay(1);
Apr 15, 2002
Apr 15, 2002
157
158
159
160
continue;
}
if ( status == -ESTRPIPE ) {
do {
Jan 4, 2004
Jan 4, 2004
161
SDL_Delay(1);
Apr 15, 2002
Apr 15, 2002
162
163
164
165
166
167
168
169
170
171
status = snd_pcm_resume(pcm_handle);
} while ( status == -EAGAIN );
}
if ( status < 0 ) {
status = snd_pcm_prepare(pcm_handle);
}
if ( status < 0 ) {
/* Hmm, not much we can do - abort */
this->enabled = 0;
return;
Apr 26, 2001
Apr 26, 2001
172
}
Apr 15, 2002
Apr 15, 2002
173
continue;
Apr 26, 2001
Apr 26, 2001
174
}
Apr 15, 2002
Apr 15, 2002
175
176
sample_buf += status * this->spec.channels;
sample_len -= status;
Apr 26, 2001
Apr 26, 2001
177
178
179
}
}
Apr 15, 2002
Apr 15, 2002
180
static Uint8 *ALSA_GetAudioBuf(_THIS)
Apr 26, 2001
Apr 26, 2001
181
{
Apr 15, 2002
Apr 15, 2002
182
return(mixbuf);
Apr 26, 2001
Apr 26, 2001
183
184
}
Apr 15, 2002
Apr 15, 2002
185
static void ALSA_CloseAudio(_THIS)
Apr 26, 2001
Apr 26, 2001
186
{
Apr 15, 2002
Apr 15, 2002
187
188
189
if ( mixbuf != NULL ) {
SDL_FreeAudioMem(mixbuf);
mixbuf = NULL;
Apr 26, 2001
Apr 26, 2001
190
}
Apr 15, 2002
Apr 15, 2002
191
if ( pcm_handle ) {
Apr 15, 2002
Apr 15, 2002
192
snd_pcm_drain(pcm_handle);
Apr 15, 2002
Apr 15, 2002
193
194
snd_pcm_close(pcm_handle);
pcm_handle = NULL;
Apr 26, 2001
Apr 26, 2001
195
196
197
}
}
Apr 15, 2002
Apr 15, 2002
198
static int ALSA_OpenAudio(_THIS, SDL_AudioSpec *spec)
Apr 26, 2001
Apr 26, 2001
199
{
Apr 15, 2002
Apr 15, 2002
200
201
202
203
204
int status;
snd_pcm_hw_params_t *params;
snd_pcm_format_t format;
snd_pcm_uframes_t frames;
Uint16 test_format;
Apr 26, 2001
Apr 26, 2001
205
206
/* Open the audio device */
Nov 17, 2002
Nov 17, 2002
207
status = snd_pcm_open(&pcm_handle, get_audio_device(), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
Apr 15, 2002
Apr 15, 2002
208
209
if ( status < 0 ) {
SDL_SetError("Couldn't open audio device: %s", snd_strerror(status));
Apr 26, 2001
Apr 26, 2001
210
211
212
return(-1);
}
Apr 15, 2002
Apr 15, 2002
213
214
215
216
217
218
219
220
/* Figure out what the hardware is capable of */
snd_pcm_hw_params_alloca(&params);
status = snd_pcm_hw_params_any(pcm_handle, params);
if ( status < 0 ) {
SDL_SetError("Couldn't get hardware config: %s", snd_strerror(status));
ALSA_CloseAudio(this);
return(-1);
}
Apr 26, 2001
Apr 26, 2001
221
Apr 15, 2002
Apr 15, 2002
222
223
224
225
226
227
228
/* SDL only uses interleaved sample output */
status = snd_pcm_hw_params_set_access(pcm_handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);
if ( status < 0 ) {
SDL_SetError("Couldn't set interleaved access: %s", snd_strerror(status));
ALSA_CloseAudio(this);
return(-1);
}
Apr 26, 2001
Apr 26, 2001
229
230
/* Try for a closest match on audio format */
Apr 15, 2002
Apr 15, 2002
231
status = -1;
Apr 26, 2001
Apr 26, 2001
232
for ( test_format = SDL_FirstAudioFormat(spec->format);
Apr 15, 2002
Apr 15, 2002
233
234
test_format && (status < 0); ) {
switch ( test_format ) {
Apr 26, 2001
Apr 26, 2001
235
case AUDIO_U8:
Apr 15, 2002
Apr 15, 2002
236
format = SND_PCM_FORMAT_U8;
Apr 26, 2001
Apr 26, 2001
237
238
break;
case AUDIO_S8:
Apr 15, 2002
Apr 15, 2002
239
format = SND_PCM_FORMAT_S8;
Apr 26, 2001
Apr 26, 2001
240
241
break;
case AUDIO_S16LSB:
Apr 15, 2002
Apr 15, 2002
242
format = SND_PCM_FORMAT_S16_LE;
Apr 26, 2001
Apr 26, 2001
243
244
break;
case AUDIO_S16MSB:
Apr 15, 2002
Apr 15, 2002
245
format = SND_PCM_FORMAT_S16_BE;
Apr 26, 2001
Apr 26, 2001
246
247
break;
case AUDIO_U16LSB:
Apr 15, 2002
Apr 15, 2002
248
format = SND_PCM_FORMAT_U16_LE;
Apr 26, 2001
Apr 26, 2001
249
250
break;
case AUDIO_U16MSB:
Apr 15, 2002
Apr 15, 2002
251
format = SND_PCM_FORMAT_U16_BE;
Apr 26, 2001
Apr 26, 2001
252
253
break;
default:
Apr 15, 2002
Apr 15, 2002
254
format = 0;
Apr 26, 2001
Apr 26, 2001
255
256
break;
}
Apr 15, 2002
Apr 15, 2002
257
258
259
260
if ( format != 0 ) {
status = snd_pcm_hw_params_set_format(pcm_handle, params, format);
}
if ( status < 0 ) {
Apr 26, 2001
Apr 26, 2001
261
262
263
test_format = SDL_NextAudioFormat();
}
}
Apr 15, 2002
Apr 15, 2002
264
if ( status < 0 ) {
Apr 26, 2001
Apr 26, 2001
265
SDL_SetError("Couldn't find any hardware audio formats");
Apr 15, 2002
Apr 15, 2002
266
ALSA_CloseAudio(this);
Apr 26, 2001
Apr 26, 2001
267
268
269
270
return(-1);
}
spec->format = test_format;
Apr 15, 2002
Apr 15, 2002
271
272
273
274
275
276
277
278
279
280
281
/* Set the number of channels */
status = snd_pcm_hw_params_set_channels(pcm_handle, params, spec->channels);
if ( status < 0 ) {
status = snd_pcm_hw_params_get_channels(params);
if ( (status <= 0) || (status > 2) ) {
SDL_SetError("Couldn't set audio channels");
ALSA_CloseAudio(this);
return(-1);
}
spec->channels = status;
}
Apr 26, 2001
Apr 26, 2001
282
Apr 15, 2002
Apr 15, 2002
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/* Set the audio rate */
status = snd_pcm_hw_params_set_rate_near(pcm_handle, params, spec->freq, NULL);
if ( status < 0 ) {
SDL_SetError("Couldn't set audio frequency: %s", snd_strerror(status));
ALSA_CloseAudio(this);
return(-1);
}
spec->freq = status;
/* Set the buffer size, in samples */
frames = spec->samples;
frames = snd_pcm_hw_params_set_period_size_near(pcm_handle, params, frames, NULL);
spec->samples = frames;
snd_pcm_hw_params_set_periods_near(pcm_handle, params, 2, NULL);
/* "set" the hardware with the desired parameters */
status = snd_pcm_hw_params(pcm_handle, params);
if ( status < 0 ) {
SDL_SetError("Couldn't set audio parameters: %s", snd_strerror(status));
ALSA_CloseAudio(this);
Apr 26, 2001
Apr 26, 2001
303
304
305
return(-1);
}
Apr 15, 2002
Apr 15, 2002
306
307
308
309
310
311
312
313
314
/* Calculate the final parameters for this audio specification */
SDL_CalculateAudioSpec(spec);
/* Allocate mixing buffer */
mixlen = spec->size;
mixbuf = (Uint8 *)SDL_AllocAudioMem(mixlen);
if ( mixbuf == NULL ) {
ALSA_CloseAudio(this);
return(-1);
Apr 26, 2001
Apr 26, 2001
315
}
Apr 15, 2002
Apr 15, 2002
316
memset(mixbuf, spec->silence, spec->size);
Apr 26, 2001
Apr 26, 2001
317
318
319
320
/* Get the parent process id (we're the parent of the audio thread) */
parent = getpid();
Jan 4, 2004
Jan 4, 2004
321
322
323
/* Switch to blocking mode for playback */
snd_pcm_nonblock(pcm_handle, 0);
Apr 26, 2001
Apr 26, 2001
324
325
326
/* We're ready to rock and roll. :-) */
return(0);
}