2 * QEMU SDL audio driver
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include <SDL_thread.h>
30 #define _POSIX_PTHREAD_SEMANTICS 1
35 #define AUDIO_CAP "sdl"
36 #include "audio_int.h"
38 typedef struct SDLVoiceOut
{
51 struct SDLAudioState
{
57 typedef struct SDLAudioState SDLAudioState
;
59 static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt
, ...)
64 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
67 AUD_log (AUDIO_CAP
, "Reason: %s\n", SDL_GetError ());
70 static int sdl_lock (SDLAudioState
*s
, const char *forfn
)
72 if (SDL_LockMutex (s
->mutex
)) {
73 sdl_logerr ("SDL_LockMutex for %s failed\n", forfn
);
79 static int sdl_unlock (SDLAudioState
*s
, const char *forfn
)
81 if (SDL_UnlockMutex (s
->mutex
)) {
82 sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn
);
88 static int sdl_post (SDLAudioState
*s
, const char *forfn
)
90 if (SDL_SemPost (s
->sem
)) {
91 sdl_logerr ("SDL_SemPost for %s failed\n", forfn
);
97 static int sdl_wait (SDLAudioState
*s
, const char *forfn
)
99 if (SDL_SemWait (s
->sem
)) {
100 sdl_logerr ("SDL_SemWait for %s failed\n", forfn
);
106 static int sdl_unlock_and_post (SDLAudioState
*s
, const char *forfn
)
108 if (sdl_unlock (s
, forfn
)) {
112 return sdl_post (s
, forfn
);
115 static int aud_to_sdlfmt (audfmt_e fmt
, int *shift
)
135 dolog ("Internal logic error: Bad audio format %d\n", fmt
);
143 static int sdl_to_audfmt (int sdlfmt
, audfmt_e
*fmt
, int *endianess
)
177 dolog ("Unrecognized SDL audio format %d\n", sdlfmt
);
184 static int sdl_open (SDL_AudioSpec
*req
, SDL_AudioSpec
*obt
)
190 /* Make sure potential threads created by SDL don't hog signals. */
192 pthread_sigmask (SIG_BLOCK
, &new, &old
);
195 status
= SDL_OpenAudio (req
, obt
);
197 sdl_logerr ("SDL_OpenAudio failed\n");
201 pthread_sigmask (SIG_SETMASK
, &old
, 0);
206 static void sdl_close (SDLAudioState
*s
)
208 if (s
->initialized
) {
209 sdl_lock (s
, "sdl_close");
211 sdl_unlock_and_post (s
, "sdl_close");
218 static void sdl_callback (void *opaque
, Uint8
*buf
, int len
)
220 SDLVoiceOut
*sdl
= opaque
;
221 SDLAudioState
*s
= &glob_sdl
;
222 HWVoiceOut
*hw
= &sdl
->hw
;
223 int samples
= len
>> hw
->info
.shift
;
232 /* dolog ("in callback samples=%d\n", samples); */
233 sdl_wait (s
, "sdl_callback");
238 if (sdl_lock (s
, "sdl_callback")) {
242 if (audio_bug (AUDIO_FUNC
, sdl
->live
< 0 || sdl
->live
> hw
->samples
)) {
243 dolog ("sdl->live=%d hw->samples=%d\n",
244 sdl
->live
, hw
->samples
);
252 /* dolog ("in callback live=%d\n", live); */
253 to_mix
= audio_MIN (samples
, sdl
->live
);
256 int chunk
= audio_MIN (to_mix
, hw
->samples
- hw
->rpos
);
257 st_sample_t
*src
= hw
->mix_buf
+ hw
->rpos
;
259 /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
260 hw
->clip (buf
, src
, chunk
);
261 sdl
->rpos
= (sdl
->rpos
+ chunk
) % hw
->samples
;
263 buf
+= chunk
<< hw
->info
.shift
;
270 if (sdl_unlock (s
, "sdl_callback")) {
274 /* dolog ("done len=%d\n", len); */
277 static int sdl_write_out (SWVoiceOut
*sw
, void *buf
, int len
)
279 return audio_pcm_sw_write (sw
, buf
, len
);
282 static int sdl_run_out (HWVoiceOut
*hw
)
285 SDLVoiceOut
*sdl
= (SDLVoiceOut
*) hw
;
286 SDLAudioState
*s
= &glob_sdl
;
288 if (sdl_lock (s
, "sdl_callback")) {
292 live
= audio_pcm_hw_get_live_out (hw
);
294 if (sdl
->decr
> live
) {
295 ldebug ("sdl->decr %d live %d sdl->live %d\n",
301 decr
= audio_MIN (sdl
->decr
, live
);
304 sdl
->live
= live
- decr
;
305 hw
->rpos
= sdl
->rpos
;
308 sdl_unlock_and_post (s
, "sdl_callback");
311 sdl_unlock (s
, "sdl_callback");
316 static void sdl_fini_out (HWVoiceOut
*hw
)
320 sdl_close (&glob_sdl
);
323 static int sdl_init_out (HWVoiceOut
*hw
, audsettings_t
*as
)
325 SDLVoiceOut
*sdl
= (SDLVoiceOut
*) hw
;
326 SDLAudioState
*s
= &glob_sdl
;
327 SDL_AudioSpec req
, obt
;
331 audfmt_e effective_fmt
;
332 audsettings_t obt_as
;
334 shift
<<= as
->nchannels
== 2;
337 req
.format
= aud_to_sdlfmt (as
->fmt
, &shift
);
338 req
.channels
= as
->nchannels
;
339 req
.samples
= conf
.nb_samples
;
340 req
.callback
= sdl_callback
;
343 if (sdl_open (&req
, &obt
)) {
347 err
= sdl_to_audfmt (obt
.format
, &effective_fmt
, &endianess
);
353 obt_as
.freq
= obt
.freq
;
354 obt_as
.nchannels
= obt
.channels
;
355 obt_as
.fmt
= effective_fmt
;
356 obt_as
.endianness
= endianess
;
358 audio_pcm_init_info (&hw
->info
, &obt_as
);
359 hw
->samples
= obt
.samples
;
367 static int sdl_ctl_out (HWVoiceOut
*hw
, int cmd
, ...)
383 static void *sdl_audio_init (void)
385 SDLAudioState
*s
= &glob_sdl
;
387 if (SDL_InitSubSystem (SDL_INIT_AUDIO
)) {
388 sdl_logerr ("SDL failed to initialize audio subsystem\n");
392 s
->mutex
= SDL_CreateMutex ();
394 sdl_logerr ("Failed to create SDL mutex\n");
395 SDL_QuitSubSystem (SDL_INIT_AUDIO
);
399 s
->sem
= SDL_CreateSemaphore (0);
401 sdl_logerr ("Failed to create SDL semaphore\n");
402 SDL_DestroyMutex (s
->mutex
);
403 SDL_QuitSubSystem (SDL_INIT_AUDIO
);
410 static void sdl_audio_fini (void *opaque
)
412 SDLAudioState
*s
= opaque
;
414 SDL_DestroySemaphore (s
->sem
);
415 SDL_DestroyMutex (s
->mutex
);
416 SDL_QuitSubSystem (SDL_INIT_AUDIO
);
419 static struct audio_option sdl_options
[] = {
420 {"SAMPLES", AUD_OPT_INT
, &conf
.nb_samples
,
421 "Size of SDL buffer in samples", NULL
, 0},
422 {NULL
, 0, NULL
, NULL
, NULL
, 0}
425 static struct audio_pcm_ops sdl_pcm_ops
= {
439 struct audio_driver sdl_audio_driver
= {
440 INIT_FIELD (name
= ) "sdl",
441 INIT_FIELD (descr
= ) "SDL http://www.libsdl.org",
442 INIT_FIELD (options
= ) sdl_options
,
443 INIT_FIELD (init
= ) sdl_audio_init
,
444 INIT_FIELD (fini
= ) sdl_audio_fini
,
445 INIT_FIELD (pcm_ops
= ) &sdl_pcm_ops
,
446 INIT_FIELD (can_be_default
= ) 1,
447 INIT_FIELD (max_voices_out
= ) 1,
448 INIT_FIELD (max_voices_in
= ) 0,
449 INIT_FIELD (voice_size_out
= ) sizeof (SDLVoiceOut
),
450 INIT_FIELD (voice_size_in
= ) 0