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

Latest commit

 

History

History
354 lines (302 loc) · 10 KB

SDL_artsaudio.c

File metadata and controls

354 lines (302 loc) · 10 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
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
/* Allow access to a raw mixing buffer */
Feb 10, 2006
Feb 10, 2006
26
#include "SDL_timer.h"
Apr 26, 2001
Apr 26, 2001
27
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
28
29
#include "../SDL_audiomem.h"
#include "../SDL_audio_c.h"
Apr 26, 2001
Apr 26, 2001
30
31
#include "SDL_artsaudio.h"
Feb 16, 2006
Feb 16, 2006
32
#ifdef SDL_AUDIO_DRIVER_ARTS_DYNAMIC
Mar 6, 2002
Mar 6, 2002
33
34
35
36
37
38
#include "SDL_name.h"
#include "SDL_loadso.h"
#else
#define SDL_NAME(X) X
#endif
Apr 26, 2001
Apr 26, 2001
39
/* The tag name used by artsc audio */
Feb 16, 2006
Feb 16, 2006
40
#define ARTS_DRIVER_NAME "arts"
Apr 26, 2001
Apr 26, 2001
41
Feb 16, 2006
Feb 16, 2006
42
#ifdef SDL_AUDIO_DRIVER_ARTS_DYNAMIC
Mar 6, 2002
Mar 6, 2002
43
Feb 16, 2006
Feb 16, 2006
44
static const char *arts_library = SDL_AUDIO_DRIVER_ARTS_DYNAMIC;
Mar 6, 2002
Mar 6, 2002
45
46
static void *arts_handle = NULL;
Oct 17, 2006
Oct 17, 2006
47
/* !!! FIXME: I hate this SDL_NAME clutter...it makes everything so messy! */
Jul 10, 2006
Jul 10, 2006
48
49
50
51
52
53
54
55
56
57
58
59
static int (*SDL_NAME(arts_init)) (void);
static void (*SDL_NAME(arts_free)) (void);
static arts_stream_t(*SDL_NAME(arts_play_stream)) (int rate, int bits,
int channels,
const char *name);
static int (*SDL_NAME(arts_stream_set)) (arts_stream_t s,
arts_parameter_t param, int value);
static int (*SDL_NAME(arts_stream_get)) (arts_stream_t s,
arts_parameter_t param);
static int (*SDL_NAME(arts_write)) (arts_stream_t s, const void *buffer,
int count);
static void (*SDL_NAME(arts_close_stream)) (arts_stream_t s);
Oct 17, 2006
Oct 17, 2006
60
61
static void (*SDL_NAME(arts_close_stream)) (arts_stream_t s);
static const char *(*SDL_NAME(arts_error_text)) (int errorcode);
Jul 10, 2006
Jul 10, 2006
62
Oct 17, 2006
Oct 17, 2006
63
#define SDL_ARTS_SYM(x) { #x, (void **) (char *) &SDL_NAME(x) }
Jul 10, 2006
Jul 10, 2006
64
65
66
67
static struct
{
const char *name;
void **func;
Mar 6, 2002
Mar 6, 2002
68
} arts_functions[] = {
Oct 28, 2006
Oct 28, 2006
69
70
71
72
73
74
75
SDL_ARTS_SYM(arts_init),
SDL_ARTS_SYM(arts_free),
SDL_ARTS_SYM(arts_play_stream),
SDL_ARTS_SYM(arts_stream_set),
SDL_ARTS_SYM(arts_stream_get),
SDL_ARTS_SYM(arts_write),
SDL_ARTS_SYM(arts_close_stream), SDL_ARTS_SYM(arts_error_text),};
Oct 17, 2006
Oct 17, 2006
76
#undef SDL_ARTS_SYM
Jul 10, 2006
Jul 10, 2006
77
78
79
static void
UnloadARTSLibrary()
Mar 6, 2002
Mar 6, 2002
80
{
Oct 17, 2006
Oct 17, 2006
81
if (arts_handle != NULL) {
Jul 10, 2006
Jul 10, 2006
82
83
84
SDL_UnloadObject(arts_handle);
arts_handle = NULL;
}
Mar 6, 2002
Mar 6, 2002
85
86
}
Jul 10, 2006
Jul 10, 2006
87
88
static int
LoadARTSLibrary(void)
Mar 6, 2002
Mar 6, 2002
89
{
Jul 10, 2006
Jul 10, 2006
90
91
int i, retval = -1;
Oct 17, 2006
Oct 17, 2006
92
93
94
95
96
97
98
99
100
101
102
103
if (arts_handle == NULL) {
arts_handle = SDL_LoadObject(arts_library);
if (arts_handle != NULL) {
retval = 0;
for (i = 0; i < SDL_arraysize(arts_functions); ++i) {
*arts_functions[i].func =
SDL_LoadFunction(arts_handle, arts_functions[i].name);
if (!*arts_functions[i].func) {
retval = -1;
UnloadARTSLibrary();
break;
}
Jul 10, 2006
Jul 10, 2006
104
105
106
}
}
}
Oct 17, 2006
Oct 17, 2006
107
Jul 10, 2006
Jul 10, 2006
108
return retval;
Mar 6, 2002
Mar 6, 2002
109
110
111
112
}
#else
Jul 10, 2006
Jul 10, 2006
113
114
static void
UnloadARTSLibrary()
Mar 6, 2002
Mar 6, 2002
115
{
Jul 10, 2006
Jul 10, 2006
116
return;
Mar 6, 2002
Mar 6, 2002
117
118
}
Jul 10, 2006
Jul 10, 2006
119
120
static int
LoadARTSLibrary(void)
Mar 6, 2002
Mar 6, 2002
121
{
Jul 10, 2006
Jul 10, 2006
122
return 0;
Mar 6, 2002
Mar 6, 2002
123
124
}
Feb 16, 2006
Feb 16, 2006
125
#endif /* SDL_AUDIO_DRIVER_ARTS_DYNAMIC */
Mar 6, 2002
Mar 6, 2002
126
Apr 26, 2001
Apr 26, 2001
127
/* This function waits until it is possible to write a full sound buffer */
Jul 10, 2006
Jul 10, 2006
128
static void
Oct 17, 2006
Oct 17, 2006
129
ARTS_WaitDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
130
{
Jul 10, 2006
Jul 10, 2006
131
132
133
134
135
Sint32 ticks;
/* Check to see if the thread-parent process is still alive */
{
static int cnt = 0;
Oct 17, 2006
Oct 17, 2006
136
/* Note that this only works with thread implementations
Jul 10, 2006
Jul 10, 2006
137
138
that use a different process id for each thread.
*/
Oct 17, 2006
Oct 17, 2006
139
140
141
/* Check every 10 loops */
if (this->hidden->parent && (((++cnt) % 10) == 0)) {
if (kill(this->hidden->parent, 0) < 0) {
Jul 10, 2006
Jul 10, 2006
142
143
144
145
146
147
this->enabled = 0;
}
}
}
/* Use timer for general audio synchronization */
Oct 28, 2006
Oct 28, 2006
148
149
ticks =
((Sint32) (this->hidden->next_frame - SDL_GetTicks())) - FUDGE_TICKS;
Jul 10, 2006
Jul 10, 2006
150
151
152
if (ticks > 0) {
SDL_Delay(ticks);
}
Apr 26, 2001
Apr 26, 2001
153
154
}
Jul 10, 2006
Jul 10, 2006
155
static void
Oct 17, 2006
Oct 17, 2006
156
ARTS_PlayDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
157
{
Jul 10, 2006
Jul 10, 2006
158
/* Write the audio data */
Oct 28, 2006
Oct 28, 2006
159
160
161
int written = SDL_NAME(arts_write) (this->hidden->stream,
this->hidden->mixbuf,
this->hidden->mixlen);
Jul 10, 2006
Jul 10, 2006
162
163
/* If timer synchronization is enabled, set the next write frame */
Oct 17, 2006
Oct 17, 2006
164
165
if (this->hidden->frame_ticks) {
this->hidden->next_frame += this->hidden->frame_ticks;
Jul 10, 2006
Jul 10, 2006
166
167
168
169
170
171
}
/* If we couldn't write, assume fatal error for now */
if (written < 0) {
this->enabled = 0;
}
Apr 26, 2001
Apr 26, 2001
172
#ifdef DEBUG_AUDIO
Jul 10, 2006
Jul 10, 2006
173
fprintf(stderr, "Wrote %d bytes of audio data\n", written);
Apr 26, 2001
Apr 26, 2001
174
175
176
#endif
}
Oct 17, 2006
Oct 17, 2006
177
178
179
180
181
182
183
static void
ARTS_WaitDone(_THIS)
{
/* !!! FIXME: camp here until buffer drains... SDL_Delay(???); */
}
Jul 10, 2006
Jul 10, 2006
184
static Uint8 *
Oct 17, 2006
Oct 17, 2006
185
ARTS_GetDeviceBuf(_THIS)
Apr 26, 2001
Apr 26, 2001
186
{
Oct 17, 2006
Oct 17, 2006
187
return (this->hidden->mixbuf);
Apr 26, 2001
Apr 26, 2001
188
189
}
Oct 17, 2006
Oct 17, 2006
190
Jul 10, 2006
Jul 10, 2006
191
static void
Oct 17, 2006
Oct 17, 2006
192
ARTS_CloseDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
193
{
Oct 17, 2006
Oct 17, 2006
194
195
196
197
198
199
200
201
202
203
204
205
if (this->hidden != NULL) {
if (this->hidden->mixbuf != NULL) {
SDL_FreeAudioMem(this->hidden->mixbuf);
this->hidden->mixbuf = NULL;
}
if (this->hidden->stream) {
SDL_NAME(arts_close_stream) (this->hidden->stream);
this->hidden->stream = 0;
}
SDL_NAME(arts_free) ();
SDL_free(this->hidden);
this->hidden = NULL;
Jul 10, 2006
Jul 10, 2006
206
}
Apr 26, 2001
Apr 26, 2001
207
208
}
Oct 17, 2006
Oct 17, 2006
209
Jul 10, 2006
Jul 10, 2006
210
static int
Oct 17, 2006
Oct 17, 2006
211
ARTS_OpenDevice(_THIS, const char *devname, int iscapture)
Apr 26, 2001
Apr 26, 2001
212
{
Oct 17, 2006
Oct 17, 2006
213
214
215
int rc = 0;
int bits = 0, frag_spec = 0;
SDL_AudioFormat test_format = 0, format = 0;
Apr 26, 2001
Apr 26, 2001
216
Oct 17, 2006
Oct 17, 2006
217
218
/* Initialize all variables that we clean on shutdown */
this->hidden = (struct SDL_PrivateAudioData *)
Oct 28, 2006
Oct 28, 2006
219
SDL_malloc((sizeof *this->hidden));
Oct 17, 2006
Oct 17, 2006
220
221
222
223
224
if (this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
}
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
Apr 26, 2001
Apr 26, 2001
225
Jul 10, 2006
Jul 10, 2006
226
/* Try for a closest match on audio format */
Oct 17, 2006
Oct 17, 2006
227
for (test_format = SDL_FirstAudioFormat(this->spec.format);
Jul 10, 2006
Jul 10, 2006
228
!format && test_format;) {
Apr 26, 2001
Apr 26, 2001
229
#ifdef DEBUG_AUDIO
Jul 10, 2006
Jul 10, 2006
230
fprintf(stderr, "Trying format 0x%4.4x\n", test_format);
Apr 26, 2001
Apr 26, 2001
231
#endif
Jul 10, 2006
Jul 10, 2006
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
switch (test_format) {
case AUDIO_U8:
bits = 8;
format = 1;
break;
case AUDIO_S16LSB:
bits = 16;
format = 1;
break;
default:
format = 0;
break;
}
if (!format) {
test_format = SDL_NextAudioFormat();
}
}
if (format == 0) {
Oct 17, 2006
Oct 17, 2006
250
ARTS_CloseDevice(this);
Jul 10, 2006
Jul 10, 2006
251
SDL_SetError("Couldn't find any hardware audio formats");
Oct 17, 2006
Oct 17, 2006
252
return 0;
Jul 10, 2006
Jul 10, 2006
253
}
Oct 17, 2006
Oct 17, 2006
254
this->spec.format = test_format;
Jul 10, 2006
Jul 10, 2006
255
Oct 17, 2006
Oct 17, 2006
256
257
if ((rc = SDL_NAME(arts_init) ()) != 0) {
ARTS_CloseDevice(this);
Oct 28, 2006
Oct 28, 2006
258
259
SDL_SetError("Unable to initialize ARTS: %s",
SDL_NAME(arts_error_text) (rc));
Oct 17, 2006
Oct 17, 2006
260
return 0;
Jul 10, 2006
Jul 10, 2006
261
}
Oct 28, 2006
Oct 28, 2006
262
263
264
265
this->hidden->stream = SDL_NAME(arts_play_stream) (this->spec.freq,
bits,
this->spec.channels,
"SDL");
Jul 10, 2006
Jul 10, 2006
266
267
/* Calculate the final parameters for this audio specification */
Oct 17, 2006
Oct 17, 2006
268
SDL_CalculateAudioSpec(&this->spec);
Jul 10, 2006
Jul 10, 2006
269
270
/* Determine the power of two of the fragment size */
Oct 17, 2006
Oct 17, 2006
271
272
273
for (frag_spec = 0; (0x01 << frag_spec) < this->spec.size; ++frag_spec);
if ((0x01 << frag_spec) != this->spec.size) {
ARTS_CloseDevice(this);
Jul 10, 2006
Jul 10, 2006
274
SDL_SetError("Fragment size must be a power of two");
Oct 17, 2006
Oct 17, 2006
275
return 0;
Jul 10, 2006
Jul 10, 2006
276
277
}
frag_spec |= 0x00020000; /* two fragments, for low latency */
Apr 26, 2001
Apr 26, 2001
278
279
#ifdef ARTS_P_PACKET_SETTINGS
Oct 17, 2006
Oct 17, 2006
280
SDL_NAME(arts_stream_set) (this->hidden->stream,
Oct 28, 2006
Oct 28, 2006
281
ARTS_P_PACKET_SETTINGS, frag_spec);
Apr 26, 2001
Apr 26, 2001
282
#else
Oct 17, 2006
Oct 17, 2006
283
SDL_NAME(arts_stream_set) (this->hidden->stream, ARTS_P_PACKET_SIZE,
Jul 10, 2006
Jul 10, 2006
284
frag_spec & 0xffff);
Oct 17, 2006
Oct 17, 2006
285
286
SDL_NAME(arts_stream_set) (this->hidden->stream, ARTS_P_PACKET_COUNT,
frag_spec >> 16);
Apr 26, 2001
Apr 26, 2001
287
#endif
Oct 17, 2006
Oct 17, 2006
288
289
this->spec.size = SDL_NAME(arts_stream_get) (this->hidden->stream,
ARTS_P_PACKET_SIZE);
Apr 26, 2001
Apr 26, 2001
290
Jul 10, 2006
Jul 10, 2006
291
/* Allocate mixing buffer */
Oct 17, 2006
Oct 17, 2006
292
293
294
295
296
297
this->hidden->mixlen = this->spec.size;
this->hidden->mixbuf = (Uint8 *) SDL_AllocAudioMem(this->hidden->mixlen);
if (this->hidden->mixbuf == NULL) {
ARTS_CloseDevice(this);
SDL_OutOfMemory();
return 0;
Jul 10, 2006
Jul 10, 2006
298
}
Oct 17, 2006
Oct 17, 2006
299
SDL_memset(this->hidden->mixbuf, this->spec.silence, this->spec.size);
Apr 26, 2001
Apr 26, 2001
300
Jul 10, 2006
Jul 10, 2006
301
/* Get the parent process id (we're the parent of the audio thread) */
Oct 17, 2006
Oct 17, 2006
302
this->hidden->parent = getpid();
Apr 26, 2001
Apr 26, 2001
303
Jul 10, 2006
Jul 10, 2006
304
/* We're ready to rock and roll. :-) */
Oct 17, 2006
Oct 17, 2006
305
return 1;
Apr 26, 2001
Apr 26, 2001
306
}
Jul 10, 2006
Jul 10, 2006
307
Oct 17, 2006
Oct 17, 2006
308
309
310
311
312
313
314
315
316
static void
ARTS_Deinitialize(void)
{
UnloadARTSLibrary();
}
static int
Oct 28, 2006
Oct 28, 2006
317
ARTS_Init(SDL_AudioDriverImpl * impl)
Oct 17, 2006
Oct 17, 2006
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
{
if (LoadARTSLibrary() < 0) {
return 0;
} else {
if (SDL_NAME(arts_init) () != 0) {
UnloadARTSLibrary();
SDL_SetError("ARTS: arts_init failed (no audio server?)");
return 0;
}
/* Play a stream so aRts doesn't crash */
arts_stream_t stream;
stream = SDL_NAME(arts_play_stream) (44100, 16, 2, "SDL");
SDL_NAME(arts_write) (stream, "", 0);
SDL_NAME(arts_close_stream) (stream);
SDL_NAME(arts_free) ();
}
/* Set the function pointers */
impl->OpenDevice = ARTS_OpenDevice;
impl->PlayDevice = ARTS_PlayDevice;
impl->WaitDevice = ARTS_WaitDevice;
impl->GetDeviceBuf = ARTS_GetDeviceBuf;
impl->CloseDevice = ARTS_CloseDevice;
impl->WaitDone = ARTS_WaitDone;
impl->Deinitialize = ARTS_Deinitialize;
impl->OnlyHasDefaultOutputDevice = 1;
return 1;
}
AudioBootStrap ARTS_bootstrap = {
ARTS_DRIVER_NAME, "Analog RealTime Synthesizer", ARTS_Init, 0
};
Jul 10, 2006
Jul 10, 2006
354
/* vi: set ts=4 sw=4 expandtab: */