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

Latest commit

 

History

History
356 lines (304 loc) · 9.96 KB

SDL_artsaudio.c

File metadata and controls

356 lines (304 loc) · 9.96 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 17, 2006
Oct 17, 2006
69
70
71
72
73
74
75
76
77
78
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),
};
#undef SDL_ARTS_SYM
Jul 10, 2006
Jul 10, 2006
79
80
81
static void
UnloadARTSLibrary()
Mar 6, 2002
Mar 6, 2002
82
{
Oct 17, 2006
Oct 17, 2006
83
if (arts_handle != NULL) {
Jul 10, 2006
Jul 10, 2006
84
85
86
SDL_UnloadObject(arts_handle);
arts_handle = NULL;
}
Mar 6, 2002
Mar 6, 2002
87
88
}
Jul 10, 2006
Jul 10, 2006
89
90
static int
LoadARTSLibrary(void)
Mar 6, 2002
Mar 6, 2002
91
{
Jul 10, 2006
Jul 10, 2006
92
93
int i, retval = -1;
Oct 17, 2006
Oct 17, 2006
94
95
96
97
98
99
100
101
102
103
104
105
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
106
107
108
}
}
}
Oct 17, 2006
Oct 17, 2006
109
Jul 10, 2006
Jul 10, 2006
110
return retval;
Mar 6, 2002
Mar 6, 2002
111
112
113
114
}
#else
Jul 10, 2006
Jul 10, 2006
115
116
static void
UnloadARTSLibrary()
Mar 6, 2002
Mar 6, 2002
117
{
Jul 10, 2006
Jul 10, 2006
118
return;
Mar 6, 2002
Mar 6, 2002
119
120
}
Jul 10, 2006
Jul 10, 2006
121
122
static int
LoadARTSLibrary(void)
Mar 6, 2002
Mar 6, 2002
123
{
Jul 10, 2006
Jul 10, 2006
124
return 0;
Mar 6, 2002
Mar 6, 2002
125
126
}
Feb 16, 2006
Feb 16, 2006
127
#endif /* SDL_AUDIO_DRIVER_ARTS_DYNAMIC */
Mar 6, 2002
Mar 6, 2002
128
Apr 26, 2001
Apr 26, 2001
129
/* This function waits until it is possible to write a full sound buffer */
Jul 10, 2006
Jul 10, 2006
130
static void
Oct 17, 2006
Oct 17, 2006
131
ARTS_WaitDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
132
{
Jul 10, 2006
Jul 10, 2006
133
134
135
136
137
Sint32 ticks;
/* Check to see if the thread-parent process is still alive */
{
static int cnt = 0;
Oct 17, 2006
Oct 17, 2006
138
/* Note that this only works with thread implementations
Jul 10, 2006
Jul 10, 2006
139
140
that use a different process id for each thread.
*/
Oct 17, 2006
Oct 17, 2006
141
142
143
/* Check every 10 loops */
if (this->hidden->parent && (((++cnt) % 10) == 0)) {
if (kill(this->hidden->parent, 0) < 0) {
Jul 10, 2006
Jul 10, 2006
144
145
146
147
148
149
this->enabled = 0;
}
}
}
/* Use timer for general audio synchronization */
Oct 17, 2006
Oct 17, 2006
150
ticks = ((Sint32) (this->hidden->next_frame-SDL_GetTicks())) - FUDGE_TICKS;
Jul 10, 2006
Jul 10, 2006
151
152
153
if (ticks > 0) {
SDL_Delay(ticks);
}
Apr 26, 2001
Apr 26, 2001
154
155
}
Jul 10, 2006
Jul 10, 2006
156
static void
Oct 17, 2006
Oct 17, 2006
157
ARTS_PlayDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
158
{
Jul 10, 2006
Jul 10, 2006
159
/* Write the audio data */
Oct 17, 2006
Oct 17, 2006
160
161
162
163
int written = SDL_NAME(arts_write) (
this->hidden->stream,
this->hidden->mixbuf,
this->hidden->mixlen);
Jul 10, 2006
Jul 10, 2006
164
165
/* If timer synchronization is enabled, set the next write frame */
Oct 17, 2006
Oct 17, 2006
166
167
if (this->hidden->frame_ticks) {
this->hidden->next_frame += this->hidden->frame_ticks;
Jul 10, 2006
Jul 10, 2006
168
169
170
171
172
173
}
/* If we couldn't write, assume fatal error for now */
if (written < 0) {
this->enabled = 0;
}
Apr 26, 2001
Apr 26, 2001
174
#ifdef DEBUG_AUDIO
Jul 10, 2006
Jul 10, 2006
175
fprintf(stderr, "Wrote %d bytes of audio data\n", written);
Apr 26, 2001
Apr 26, 2001
176
177
178
#endif
}
Oct 17, 2006
Oct 17, 2006
179
180
181
182
183
184
185
static void
ARTS_WaitDone(_THIS)
{
/* !!! FIXME: camp here until buffer drains... SDL_Delay(???); */
}
Jul 10, 2006
Jul 10, 2006
186
static Uint8 *
Oct 17, 2006
Oct 17, 2006
187
ARTS_GetDeviceBuf(_THIS)
Apr 26, 2001
Apr 26, 2001
188
{
Oct 17, 2006
Oct 17, 2006
189
return (this->hidden->mixbuf);
Apr 26, 2001
Apr 26, 2001
190
191
}
Oct 17, 2006
Oct 17, 2006
192
Jul 10, 2006
Jul 10, 2006
193
static void
Oct 17, 2006
Oct 17, 2006
194
ARTS_CloseDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
195
{
Oct 17, 2006
Oct 17, 2006
196
197
198
199
200
201
202
203
204
205
206
207
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
208
}
Apr 26, 2001
Apr 26, 2001
209
210
}
Oct 17, 2006
Oct 17, 2006
211
Jul 10, 2006
Jul 10, 2006
212
static int
Oct 17, 2006
Oct 17, 2006
213
ARTS_OpenDevice(_THIS, const char *devname, int iscapture)
Apr 26, 2001
Apr 26, 2001
214
{
Oct 17, 2006
Oct 17, 2006
215
216
217
int rc = 0;
int bits = 0, frag_spec = 0;
SDL_AudioFormat test_format = 0, format = 0;
Apr 26, 2001
Apr 26, 2001
218
Oct 17, 2006
Oct 17, 2006
219
220
221
222
223
224
225
226
/* Initialize all variables that we clean on shutdown */
this->hidden = (struct SDL_PrivateAudioData *)
SDL_malloc((sizeof *this->hidden));
if (this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
}
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
Apr 26, 2001
Apr 26, 2001
227
Jul 10, 2006
Jul 10, 2006
228
/* Try for a closest match on audio format */
Oct 17, 2006
Oct 17, 2006
229
for (test_format = SDL_FirstAudioFormat(this->spec.format);
Jul 10, 2006
Jul 10, 2006
230
!format && test_format;) {
Apr 26, 2001
Apr 26, 2001
231
#ifdef DEBUG_AUDIO
Jul 10, 2006
Jul 10, 2006
232
fprintf(stderr, "Trying format 0x%4.4x\n", test_format);
Apr 26, 2001
Apr 26, 2001
233
#endif
Jul 10, 2006
Jul 10, 2006
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
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
252
ARTS_CloseDevice(this);
Jul 10, 2006
Jul 10, 2006
253
SDL_SetError("Couldn't find any hardware audio formats");
Oct 17, 2006
Oct 17, 2006
254
return 0;
Jul 10, 2006
Jul 10, 2006
255
}
Oct 17, 2006
Oct 17, 2006
256
this->spec.format = test_format;
Jul 10, 2006
Jul 10, 2006
257
Oct 17, 2006
Oct 17, 2006
258
259
260
261
262
if ((rc = SDL_NAME(arts_init) ()) != 0) {
ARTS_CloseDevice(this);
SDL_SetError( "Unable to initialize ARTS: %s",
SDL_NAME(arts_error_text)(rc) );
return 0;
Jul 10, 2006
Jul 10, 2006
263
}
Oct 17, 2006
Oct 17, 2006
264
265
266
267
this->hidden->stream = SDL_NAME(arts_play_stream) (
this->spec.freq,
bits, this->spec.channels,
"SDL");
Jul 10, 2006
Jul 10, 2006
268
269
/* Calculate the final parameters for this audio specification */
Oct 17, 2006
Oct 17, 2006
270
SDL_CalculateAudioSpec(&this->spec);
Jul 10, 2006
Jul 10, 2006
271
272
/* Determine the power of two of the fragment size */
Oct 17, 2006
Oct 17, 2006
273
274
275
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
276
SDL_SetError("Fragment size must be a power of two");
Oct 17, 2006
Oct 17, 2006
277
return 0;
Jul 10, 2006
Jul 10, 2006
278
279
}
frag_spec |= 0x00020000; /* two fragments, for low latency */
Apr 26, 2001
Apr 26, 2001
280
281
#ifdef ARTS_P_PACKET_SETTINGS
Oct 17, 2006
Oct 17, 2006
282
283
SDL_NAME(arts_stream_set) (this->hidden->stream,
ARTS_P_PACKET_SETTINGS, frag_spec);
Apr 26, 2001
Apr 26, 2001
284
#else
Oct 17, 2006
Oct 17, 2006
285
SDL_NAME(arts_stream_set) (this->hidden->stream, ARTS_P_PACKET_SIZE,
Jul 10, 2006
Jul 10, 2006
286
frag_spec & 0xffff);
Oct 17, 2006
Oct 17, 2006
287
288
SDL_NAME(arts_stream_set) (this->hidden->stream, ARTS_P_PACKET_COUNT,
frag_spec >> 16);
Apr 26, 2001
Apr 26, 2001
289
#endif
Oct 17, 2006
Oct 17, 2006
290
291
this->spec.size = SDL_NAME(arts_stream_get) (this->hidden->stream,
ARTS_P_PACKET_SIZE);
Apr 26, 2001
Apr 26, 2001
292
Jul 10, 2006
Jul 10, 2006
293
/* Allocate mixing buffer */
Oct 17, 2006
Oct 17, 2006
294
295
296
297
298
299
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
300
}
Oct 17, 2006
Oct 17, 2006
301
SDL_memset(this->hidden->mixbuf, this->spec.silence, this->spec.size);
Apr 26, 2001
Apr 26, 2001
302
Jul 10, 2006
Jul 10, 2006
303
/* Get the parent process id (we're the parent of the audio thread) */
Oct 17, 2006
Oct 17, 2006
304
this->hidden->parent = getpid();
Apr 26, 2001
Apr 26, 2001
305
Jul 10, 2006
Jul 10, 2006
306
/* We're ready to rock and roll. :-) */
Oct 17, 2006
Oct 17, 2006
307
return 1;
Apr 26, 2001
Apr 26, 2001
308
}
Jul 10, 2006
Jul 10, 2006
309
Oct 17, 2006
Oct 17, 2006
310
311
312
313
314
315
316
317
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
354
355
static void
ARTS_Deinitialize(void)
{
UnloadARTSLibrary();
}
static int
ARTS_Init(SDL_AudioDriverImpl *impl)
{
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
356
/* vi: set ts=4 sw=4 expandtab: */