Mercurial > sdl-ios-xcode
annotate src/audio/SDL_audio.c @ 334:f65715bd8ad8
Fixed DirectX fullscreen gamma control (thanks John!)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 09 Apr 2002 23:49:06 +0000 |
parents | fd93a09655e3 |
children | d219b0e02f5f |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
297
f6ffac90895c
Updated copyright information for 2002
Sam Lantinga <slouken@libsdl.org>
parents:
262
diff
changeset
|
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
9 | |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifdef SAVE_RCSID | |
24 static char rcsid = | |
25 "@(#) $Id$"; | |
26 #endif | |
27 | |
28 /* Allow access to a raw mixing buffer */ | |
29 #include <stdlib.h> | |
30 #include <stdio.h> | |
31 #include <string.h> | |
32 | |
33 #include "SDL.h" | |
34 #include "SDL_audio.h" | |
35 #include "SDL_timer.h" | |
36 #include "SDL_error.h" | |
37 #include "SDL_audio_c.h" | |
38 #include "SDL_audiomem.h" | |
39 #include "SDL_sysaudio.h" | |
40 | |
41 /* Available audio drivers */ | |
42 static AudioBootStrap *bootstrap[] = { | |
121
43febd46d49d
Name changed from OBSD to OPENBSD_AUDIO
Sam Lantinga <slouken@libsdl.org>
parents:
94
diff
changeset
|
43 #ifdef OPENBSD_AUDIO_SUPPORT |
43febd46d49d
Name changed from OBSD to OPENBSD_AUDIO
Sam Lantinga <slouken@libsdl.org>
parents:
94
diff
changeset
|
44 &OPENBSD_AUDIO_bootstrap, |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
45 #endif |
0 | 46 #ifdef OSS_SUPPORT |
47 &DSP_bootstrap, | |
48 &DMA_bootstrap, | |
49 #endif | |
50 #ifdef ALSA_SUPPORT | |
51 &ALSA_bootstrap, | |
52 #endif | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
121
diff
changeset
|
53 #ifdef SUNAUDIO_SUPPORT |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
121
diff
changeset
|
54 &SUNAUDIO_bootstrap, |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
121
diff
changeset
|
55 #endif |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
121
diff
changeset
|
56 #ifdef DMEDIA_SUPPORT |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
121
diff
changeset
|
57 &DMEDIA_bootstrap, |
35
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
58 #endif |
0 | 59 #ifdef ARTSC_SUPPORT |
60 &ARTSC_bootstrap, | |
61 #endif | |
62 #ifdef ESD_SUPPORT | |
63 &ESD_bootstrap, | |
64 #endif | |
65 #ifdef NAS_SUPPORT | |
66 &NAS_bootstrap, | |
67 #endif | |
68 #ifdef ENABLE_DIRECTX | |
69 &DSOUND_bootstrap, | |
70 #endif | |
71 #ifdef ENABLE_WINDIB | |
72 &WAVEOUT_bootstrap, | |
73 #endif | |
74 #ifdef __BEOS__ | |
75 &BAUDIO_bootstrap, | |
76 #endif | |
77 #if defined(macintosh) || TARGET_API_MAC_CARBON | |
78 &SNDMGR_bootstrap, | |
79 #endif | |
80 #ifdef _AIX | |
81 &Paud_bootstrap, | |
82 #endif | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
83 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
84 &AHI_bootstrap, |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
85 #endif |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
38
diff
changeset
|
86 #ifdef DISKAUD_SUPPORT |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
38
diff
changeset
|
87 &DISKAUD_bootstrap, |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
38
diff
changeset
|
88 #endif |
0 | 89 NULL |
90 }; | |
91 SDL_AudioDevice *current_audio = NULL; | |
92 | |
93 /* Various local functions */ | |
94 int SDL_AudioInit(const char *driver_name); | |
95 void SDL_AudioQuit(void); | |
96 | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
97 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
98 static int audio_configured = 0; |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
99 #endif |
0 | 100 |
101 /* The general mixing thread function */ | |
102 int SDL_RunAudio(void *audiop) | |
103 { | |
104 SDL_AudioDevice *audio = (SDL_AudioDevice *)audiop; | |
105 Uint8 *stream; | |
106 int stream_len; | |
107 void *udata; | |
108 void (*fill)(void *userdata,Uint8 *stream, int len); | |
109 int silence; | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
110 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
111 int started = 0; |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
112 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
113 /* AmigaOS NEEDS that the audio driver is opened in the thread that uses it! */ |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
114 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
115 D(bug("Task audio started audio struct:<%lx>...\n",audiop)); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
116 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
117 D(bug("Before Openaudio...")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
118 if(audio->OpenAudio(audio, &audio->spec)==-1) |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
119 { |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
120 D(bug("Open audio failed...\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
121 return(-1); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
122 } |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
123 D(bug("OpenAudio...OK\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
124 #endif |
0 | 125 |
126 /* Perform any thread setup */ | |
127 if ( audio->ThreadInit ) { | |
128 audio->ThreadInit(audio); | |
129 } | |
130 audio->threadid = SDL_ThreadID(); | |
131 | |
132 /* Set up the mixing function */ | |
133 fill = audio->spec.callback; | |
134 udata = audio->spec.userdata; | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
135 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
136 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
137 audio_configured = 1; |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
138 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
139 D(bug("Audio configured... Checking for conversion\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
140 SDL_mutexP(audio->mixer_lock); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
141 D(bug("Semaphore obtained...\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
142 #endif |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
143 |
0 | 144 if ( audio->convert.needed ) { |
145 if ( audio->convert.src_format == AUDIO_U8 ) { | |
146 silence = 0x80; | |
147 } else { | |
148 silence = 0; | |
149 } | |
150 stream_len = audio->convert.len; | |
151 } else { | |
152 silence = audio->spec.silence; | |
153 stream_len = audio->spec.size; | |
154 } | |
155 stream = audio->fake_stream; | |
156 | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
157 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
158 SDL_mutexV(audio->mixer_lock); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
159 D(bug("Entering audio loop...\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
160 #endif |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
161 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
162 |
0 | 163 /* Loop, filling the audio buffers */ |
164 while ( audio->enabled ) { | |
165 | |
166 /* Wait for new current buffer to finish playing */ | |
167 if ( stream == audio->fake_stream ) { | |
168 SDL_Delay((audio->spec.samples*1000)/audio->spec.freq); | |
169 } else { | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
170 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
171 if ( started > 1 ) |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
172 #endif |
0 | 173 audio->WaitAudio(audio); |
174 } | |
175 | |
176 /* Fill the current buffer with sound */ | |
177 if ( audio->convert.needed ) { | |
178 if ( audio->convert.buf ) { | |
179 stream = audio->convert.buf; | |
180 } else { | |
181 continue; | |
182 } | |
183 } else { | |
184 stream = audio->GetAudioBuf(audio); | |
185 if ( stream == NULL ) { | |
186 stream = audio->fake_stream; | |
187 } | |
188 } | |
189 memset(stream, silence, stream_len); | |
190 | |
191 if ( ! audio->paused ) { | |
192 SDL_mutexP(audio->mixer_lock); | |
193 (*fill)(udata, stream, stream_len); | |
194 SDL_mutexV(audio->mixer_lock); | |
195 } | |
196 | |
197 /* Convert the audio if necessary */ | |
198 if ( audio->convert.needed ) { | |
199 SDL_ConvertAudio(&audio->convert); | |
200 stream = audio->GetAudioBuf(audio); | |
201 if ( stream == NULL ) { | |
202 stream = audio->fake_stream; | |
203 } | |
204 memcpy(stream, audio->convert.buf, | |
205 audio->convert.len_cvt); | |
206 } | |
207 | |
208 /* Ready current buffer for play and change current buffer */ | |
209 if ( stream != audio->fake_stream ) { | |
210 audio->PlayAudio(audio); | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
211 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
212 /* AmigaOS don't have to wait the first time audio is played! */ |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
213 started++; |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
214 #endif |
0 | 215 } |
216 } | |
217 /* Wait for the audio to drain.. */ | |
218 if ( audio->WaitDone ) { | |
219 audio->WaitDone(audio); | |
220 } | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
221 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
222 #ifdef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
223 D(bug("WaitAudio...Done\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
224 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
225 audio->CloseAudio(audio); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
226 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
227 D(bug("CloseAudio..Done, subtask exiting...\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
228 audio_configured = 0; |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
229 #endif |
0 | 230 return(0); |
231 } | |
232 | |
322
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
233 static void SDL_LockAudio_Default(SDL_AudioDevice *audio) |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
234 { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
235 if ( audio->thread && (SDL_ThreadID() == audio->threadid) ) { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
236 return; |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
237 } |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
238 SDL_mutexP(audio->mixer_lock); |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
239 } |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
240 |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
241 static void SDL_UnlockAudio_Default(SDL_AudioDevice *audio) |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
242 { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
243 if ( audio->thread && (SDL_ThreadID() == audio->threadid) ) { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
244 return; |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
245 } |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
246 SDL_mutexV(audio->mixer_lock); |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
247 } |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
248 |
0 | 249 int SDL_AudioInit(const char *driver_name) |
250 { | |
251 SDL_AudioDevice *audio; | |
252 int i = 0, idx; | |
253 | |
254 /* Check to make sure we don't overwrite 'current_audio' */ | |
255 if ( current_audio != NULL ) { | |
256 SDL_AudioQuit(); | |
257 } | |
258 | |
259 /* Select the proper audio driver */ | |
260 audio = NULL; | |
261 idx = 0; | |
262 #ifdef unix | |
263 if ( (driver_name == NULL) && (getenv("ESPEAKER") != NULL) ) { | |
264 /* Ahem, we know that if ESPEAKER is set, user probably wants | |
265 to use ESD, but don't start it if it's not already running. | |
266 This probably isn't the place to do this, but... Shh! :) | |
267 */ | |
268 for ( i=0; bootstrap[i]; ++i ) { | |
269 if ( strcmp(bootstrap[i]->name, "esd") == 0 ) { | |
270 const char *esd_no_spawn; | |
271 | |
272 /* Don't start ESD if it's not running */ | |
273 esd_no_spawn = getenv("ESD_NO_SPAWN"); | |
274 if ( esd_no_spawn == NULL ) { | |
275 putenv("ESD_NO_SPAWN=1"); | |
276 } | |
277 if ( bootstrap[i]->available() ) { | |
278 audio = bootstrap[i]->create(0); | |
279 break; | |
280 } | |
281 #ifdef linux /* No unsetenv() on most platforms */ | |
282 if ( esd_no_spawn == NULL ) { | |
283 unsetenv("ESD_NO_SPAWN"); | |
284 } | |
285 #endif | |
286 } | |
287 } | |
288 } | |
289 #endif /* unix */ | |
290 if ( audio == NULL ) { | |
291 if ( driver_name != NULL ) { | |
292 #if 0 /* This will be replaced with a better driver selection API */ | |
293 if ( strrchr(driver_name, ':') != NULL ) { | |
294 idx = atoi(strrchr(driver_name, ':')+1); | |
295 } | |
296 #endif | |
297 for ( i=0; bootstrap[i]; ++i ) { | |
298 if (strncmp(bootstrap[i]->name, driver_name, | |
299 strlen(bootstrap[i]->name)) == 0) { | |
300 if ( bootstrap[i]->available() ) { | |
301 audio=bootstrap[i]->create(idx); | |
302 break; | |
303 } | |
304 } | |
305 } | |
306 } else { | |
307 for ( i=0; bootstrap[i]; ++i ) { | |
308 if ( bootstrap[i]->available() ) { | |
309 audio = bootstrap[i]->create(idx); | |
310 if ( audio != NULL ) { | |
311 break; | |
312 } | |
313 } | |
314 } | |
315 } | |
316 if ( audio == NULL ) { | |
317 SDL_SetError("No available audio device"); | |
318 #if 0 /* Don't fail SDL_Init() if audio isn't available. | |
319 SDL_OpenAudio() will handle it at that point. *sigh* | |
320 */ | |
321 return(-1); | |
322 #endif | |
323 } | |
324 } | |
325 current_audio = audio; | |
326 if ( current_audio ) { | |
327 current_audio->name = bootstrap[i]->name; | |
322
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
328 if ( !current_audio->LockAudio && !current_audio->UnlockAudio ) { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
329 current_audio->LockAudio = SDL_LockAudio_Default; |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
330 current_audio->UnlockAudio = SDL_UnlockAudio_Default; |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
331 } |
0 | 332 } |
333 return(0); | |
334 } | |
335 | |
336 char *SDL_AudioDriverName(char *namebuf, int maxlen) | |
337 { | |
338 if ( current_audio != NULL ) { | |
339 strncpy(namebuf, current_audio->name, maxlen-1); | |
340 namebuf[maxlen-1] = '\0'; | |
341 return(namebuf); | |
342 } | |
343 return(NULL); | |
344 } | |
345 | |
346 int SDL_OpenAudio(SDL_AudioSpec *desired, SDL_AudioSpec *obtained) | |
347 { | |
348 SDL_AudioDevice *audio; | |
349 | |
350 /* Start up the audio driver, if necessary */ | |
351 if ( ! current_audio ) { | |
352 if ( (SDL_InitSubSystem(SDL_INIT_AUDIO) < 0) || | |
353 (current_audio == NULL) ) { | |
354 return(-1); | |
355 } | |
356 } | |
357 audio = current_audio; | |
358 | |
262
ba5363e21df8
Don't allow multiple audio opens to succeed (until SDL 1.3)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
359 if (audio->opened) { |
ba5363e21df8
Don't allow multiple audio opens to succeed (until SDL 1.3)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
360 SDL_SetError("Audio device is already opened"); |
ba5363e21df8
Don't allow multiple audio opens to succeed (until SDL 1.3)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
361 return(-1); |
ba5363e21df8
Don't allow multiple audio opens to succeed (until SDL 1.3)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
362 } |
ba5363e21df8
Don't allow multiple audio opens to succeed (until SDL 1.3)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
363 |
0 | 364 /* Verify some parameters */ |
365 if ( desired->callback == NULL ) { | |
366 SDL_SetError("SDL_OpenAudio() passed a NULL callback"); | |
367 return(-1); | |
368 } | |
369 switch ( desired->channels ) { | |
370 case 1: /* Mono */ | |
371 case 2: /* Stereo */ | |
372 break; | |
373 default: | |
374 SDL_SetError("1 (mono) and 2 (stereo) channels supported"); | |
375 return(-1); | |
376 } | |
377 | |
378 #ifdef macintosh | |
379 /* FIXME: Need to implement PPC interrupt asm for SDL_LockAudio() */ | |
380 #else | |
381 /* Create a semaphore for locking the sound buffers */ | |
382 audio->mixer_lock = SDL_CreateMutex(); | |
383 if ( audio->mixer_lock == NULL ) { | |
384 SDL_SetError("Couldn't create mixer lock"); | |
385 SDL_CloseAudio(); | |
386 return(-1); | |
387 } | |
388 #endif | |
389 | |
390 /* Calculate the silence and size of the audio specification */ | |
391 SDL_CalculateAudioSpec(desired); | |
392 | |
393 /* Open the audio subsystem */ | |
394 memcpy(&audio->spec, desired, sizeof(audio->spec)); | |
395 audio->convert.needed = 0; | |
396 audio->enabled = 1; | |
397 audio->paused = 1; | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
398 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
399 #ifndef ENABLE_AHI |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
400 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
401 /* AmigaOS opens audio inside the main loop */ |
0 | 402 audio->opened = audio->OpenAudio(audio, &audio->spec)+1; |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
403 |
0 | 404 if ( ! audio->opened ) { |
405 SDL_CloseAudio(); | |
406 return(-1); | |
407 } | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
408 #else |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
409 D(bug("Locking semaphore...")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
410 SDL_mutexP(audio->mixer_lock); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
411 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
412 audio->thread = SDL_CreateThread(SDL_RunAudio, audio); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
413 D(bug("Created thread...\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
414 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
415 if ( audio->thread == NULL ) { |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
416 SDL_mutexV(audio->mixer_lock); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
417 SDL_CloseAudio(); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
418 SDL_SetError("Couldn't create audio thread"); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
419 return(-1); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
420 } |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
421 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
422 while(!audio_configured) |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
423 SDL_Delay(100); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
424 #endif |
0 | 425 |
426 /* If the audio driver changes the buffer size, accept it */ | |
427 if ( audio->spec.samples != desired->samples ) { | |
428 desired->samples = audio->spec.samples; | |
429 SDL_CalculateAudioSpec(desired); | |
430 } | |
431 | |
432 /* Allocate a fake audio memory buffer */ | |
433 audio->fake_stream = SDL_AllocAudioMem(audio->spec.size); | |
434 if ( audio->fake_stream == NULL ) { | |
435 SDL_CloseAudio(); | |
436 SDL_OutOfMemory(); | |
437 return(-1); | |
438 } | |
439 | |
440 /* See if we need to do any conversion */ | |
441 if ( memcmp(desired, &audio->spec, sizeof(audio->spec)) == 0 ) { | |
442 /* Just copy over the desired audio specification */ | |
443 if ( obtained != NULL ) { | |
444 memcpy(obtained, &audio->spec, sizeof(audio->spec)); | |
445 } | |
446 } else { | |
447 /* Copy over the audio specification if possible */ | |
448 if ( obtained != NULL ) { | |
449 memcpy(obtained, &audio->spec, sizeof(audio->spec)); | |
450 } else { | |
451 /* Build an audio conversion block */ | |
452 if ( SDL_BuildAudioCVT(&audio->convert, | |
453 desired->format, desired->channels, | |
454 desired->freq, | |
455 audio->spec.format, audio->spec.channels, | |
456 audio->spec.freq) < 0 ) { | |
457 SDL_CloseAudio(); | |
458 return(-1); | |
459 } | |
460 if ( audio->convert.needed ) { | |
461 audio->convert.len = desired->size; | |
462 audio->convert.buf =(Uint8 *)SDL_AllocAudioMem( | |
463 audio->convert.len*audio->convert.len_mult); | |
464 if ( audio->convert.buf == NULL ) { | |
465 SDL_CloseAudio(); | |
466 SDL_OutOfMemory(); | |
467 return(-1); | |
468 } | |
469 } | |
470 } | |
471 } | |
472 | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
473 #ifndef ENABLE_AHI |
0 | 474 /* Start the audio thread if necessary */ |
475 switch (audio->opened) { | |
476 case 1: | |
477 /* Start the audio thread */ | |
478 audio->thread = SDL_CreateThread(SDL_RunAudio, audio); | |
479 if ( audio->thread == NULL ) { | |
480 SDL_CloseAudio(); | |
481 SDL_SetError("Couldn't create audio thread"); | |
482 return(-1); | |
483 } | |
484 break; | |
485 | |
486 default: | |
487 /* The audio is now playing */ | |
488 break; | |
489 } | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
490 #else |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
491 SDL_mutexV(audio->mixer_lock); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
492 D(bug("SDL_OpenAudio USCITA...\n")); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
493 |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
494 #endif |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
495 |
0 | 496 return(0); |
497 } | |
498 | |
499 SDL_audiostatus SDL_GetAudioStatus(void) | |
500 { | |
501 SDL_AudioDevice *audio = current_audio; | |
502 SDL_audiostatus status; | |
503 | |
504 status = SDL_AUDIO_STOPPED; | |
505 if ( audio && audio->enabled ) { | |
506 if ( audio->paused ) { | |
507 status = SDL_AUDIO_PAUSED; | |
508 } else { | |
509 status = SDL_AUDIO_PLAYING; | |
510 } | |
511 } | |
512 return(status); | |
513 } | |
514 | |
515 void SDL_PauseAudio (int pause_on) | |
516 { | |
517 SDL_AudioDevice *audio = current_audio; | |
518 | |
519 if ( audio ) { | |
520 audio->paused = pause_on; | |
521 } | |
522 } | |
523 | |
524 void SDL_LockAudio (void) | |
525 { | |
526 SDL_AudioDevice *audio = current_audio; | |
527 | |
528 /* Obtain a lock on the mixing buffers */ | |
322
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
529 if ( audio && audio->LockAudio ) { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
530 audio->LockAudio(audio); |
0 | 531 } |
532 } | |
533 | |
534 void SDL_UnlockAudio (void) | |
535 { | |
536 SDL_AudioDevice *audio = current_audio; | |
537 | |
538 /* Release lock on the mixing buffers */ | |
322
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
539 if ( audio && audio->UnlockAudio ) { |
fd93a09655e3
The audio lock and unlock functions are now a part of the driver.
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
540 audio->UnlockAudio(audio); |
0 | 541 } |
542 } | |
543 | |
544 void SDL_CloseAudio (void) | |
545 { | |
546 SDL_QuitSubSystem(SDL_INIT_AUDIO); | |
547 } | |
548 | |
549 void SDL_AudioQuit(void) | |
550 { | |
551 SDL_AudioDevice *audio = current_audio; | |
552 | |
553 if ( audio ) { | |
554 audio->enabled = 0; | |
555 if ( audio->thread != NULL ) { | |
556 SDL_WaitThread(audio->thread, NULL); | |
557 } | |
558 if ( audio->mixer_lock != NULL ) { | |
559 SDL_DestroyMutex(audio->mixer_lock); | |
560 } | |
561 if ( audio->fake_stream != NULL ) { | |
562 SDL_FreeAudioMem(audio->fake_stream); | |
563 } | |
564 if ( audio->convert.needed ) { | |
565 SDL_FreeAudioMem(audio->convert.buf); | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
566 |
0 | 567 } |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
568 #ifndef ENABLE_AHI |
0 | 569 if ( audio->opened ) { |
570 audio->CloseAudio(audio); | |
571 audio->opened = 0; | |
572 } | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
573 #endif |
0 | 574 /* Free the driver data */ |
575 audio->free(audio); | |
576 current_audio = NULL; | |
577 } | |
578 } | |
579 | |
580 #define NUM_FORMATS 6 | |
581 static int format_idx; | |
582 static int format_idx_sub; | |
583 static Uint16 format_list[NUM_FORMATS][NUM_FORMATS] = { | |
584 { AUDIO_U8, AUDIO_S8, AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U16LSB, AUDIO_U16MSB }, | |
585 { AUDIO_S8, AUDIO_U8, AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U16LSB, AUDIO_U16MSB }, | |
586 { AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U16LSB, AUDIO_U16MSB, AUDIO_U8, AUDIO_S8 }, | |
587 { AUDIO_S16MSB, AUDIO_S16LSB, AUDIO_U16MSB, AUDIO_U16LSB, AUDIO_U8, AUDIO_S8 }, | |
588 { AUDIO_U16LSB, AUDIO_U16MSB, AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U8, AUDIO_S8 }, | |
589 { AUDIO_U16MSB, AUDIO_U16LSB, AUDIO_S16MSB, AUDIO_S16LSB, AUDIO_U8, AUDIO_S8 }, | |
590 }; | |
591 | |
592 Uint16 SDL_FirstAudioFormat(Uint16 format) | |
593 { | |
594 for ( format_idx=0; format_idx < NUM_FORMATS; ++format_idx ) { | |
595 if ( format_list[format_idx][0] == format ) { | |
596 break; | |
597 } | |
598 } | |
599 format_idx_sub = 0; | |
600 return(SDL_NextAudioFormat()); | |
601 } | |
602 | |
603 Uint16 SDL_NextAudioFormat(void) | |
604 { | |
605 if ( (format_idx == NUM_FORMATS) || (format_idx_sub == NUM_FORMATS) ) { | |
606 return(0); | |
607 } | |
608 return(format_list[format_idx][format_idx_sub++]); | |
609 } | |
610 | |
611 void SDL_CalculateAudioSpec(SDL_AudioSpec *spec) | |
612 { | |
613 switch (spec->format) { | |
614 case AUDIO_U8: | |
615 spec->silence = 0x80; | |
616 break; | |
617 default: | |
618 spec->silence = 0x00; | |
619 break; | |
620 } | |
621 spec->size = (spec->format&0xFF)/8; | |
622 spec->size *= spec->channels; | |
623 spec->size *= spec->samples; | |
624 } |