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>
26 #include "qemu-common.h"
31 #define _POSIX_PTHREAD_SEMANTICS 1
32 #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
37 #define AUDIO_CAP "sdl"
38 #include "audio_int.h"
40 typedef struct SDLVoiceOut {
53 static struct SDLAudioState {
59 typedef struct SDLAudioState SDLAudioState;
61 static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
66 AUD_vlog (AUDIO_CAP, fmt, ap);
69 AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
72 static int sdl_lock (SDLAudioState *s, const char *forfn)
74 if (SDL_LockMutex (s->mutex)) {
75 sdl_logerr ("SDL_LockMutex for %s failed\n", forfn);
81 static int sdl_unlock (SDLAudioState *s, const char *forfn)
83 if (SDL_UnlockMutex (s->mutex)) {
84 sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn);
90 static int sdl_post (SDLAudioState *s, const char *forfn)
92 if (SDL_SemPost (s->sem)) {
93 sdl_logerr ("SDL_SemPost for %s failed\n", forfn);
99 static int sdl_wait (SDLAudioState *s, const char *forfn)
101 if (SDL_SemWait (s->sem)) {
102 sdl_logerr ("SDL_SemWait for %s failed\n", forfn);
108 static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn)
110 if (sdl_unlock (s, forfn)) {
114 return sdl_post (s, forfn);
117 static int aud_to_sdlfmt (audfmt_e fmt)
133 dolog ("Internal logic error: Bad audio format %d\n", fmt);
141 static int sdl_to_audfmt(int sdlfmt, audfmt_e *fmt, int *endianness)
175 dolog ("Unrecognized SDL audio format %d\n", sdlfmt);
182 static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
189 /* Make sure potential threads created by SDL don't hog signals. */
190 err = sigfillset (&new);
192 dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno));
195 err = pthread_sigmask (SIG_BLOCK, &new, &old);
197 dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err));
202 status = SDL_OpenAudio (req, obt);
204 sdl_logerr ("SDL_OpenAudio failed\n");
208 err = pthread_sigmask (SIG_SETMASK, &old, NULL);
210 dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n",
212 /* We have failed to restore original signal mask, all bets are off,
213 so exit the process */
220 static void sdl_close (SDLAudioState *s)
222 if (s->initialized) {
223 sdl_lock (s, "sdl_close");
225 sdl_unlock_and_post (s, "sdl_close");
232 static void sdl_callback (void *opaque, Uint8 *buf, int len)
234 SDLVoiceOut *sdl = opaque;
235 SDLAudioState *s = &glob_sdl;
236 HWVoiceOut *hw = &sdl->hw;
237 int samples = len >> hw->info.shift;
246 /* dolog ("in callback samples=%d\n", samples); */
247 sdl_wait (s, "sdl_callback");
252 if (sdl_lock (s, "sdl_callback")) {
256 if (audio_bug (AUDIO_FUNC, sdl->live < 0 || sdl->live > hw->samples)) {
257 dolog ("sdl->live=%d hw->samples=%d\n",
258 sdl->live, hw->samples);
266 /* dolog ("in callback live=%d\n", live); */
267 to_mix = audio_MIN (samples, sdl->live);
270 int chunk = audio_MIN (to_mix, hw->samples - hw->rpos);
271 struct st_sample *src = hw->mix_buf + hw->rpos;
273 /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
274 hw->clip (buf, src, chunk);
275 sdl->rpos = (sdl->rpos + chunk) % hw->samples;
277 buf += chunk << hw->info.shift;
284 if (sdl_unlock (s, "sdl_callback")) {
288 /* dolog ("done len=%d\n", len); */
291 static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
293 return audio_pcm_sw_write (sw, buf, len);
296 static int sdl_run_out (HWVoiceOut *hw, int live)
299 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
300 SDLAudioState *s = &glob_sdl;
302 if (sdl_lock (s, "sdl_run_out")) {
306 if (sdl->decr > live) {
307 ldebug ("sdl->decr %d live %d sdl->live %d\n",
313 decr = audio_MIN (sdl->decr, live);
316 sdl->live = live - decr;
317 hw->rpos = sdl->rpos;
320 sdl_unlock_and_post (s, "sdl_run_out");
323 sdl_unlock (s, "sdl_run_out");
328 static void sdl_fini_out (HWVoiceOut *hw)
332 sdl_close (&glob_sdl);
335 static int sdl_init_out (HWVoiceOut *hw, struct audsettings *as)
337 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
338 SDLAudioState *s = &glob_sdl;
339 SDL_AudioSpec req, obt;
342 audfmt_e effective_fmt;
343 struct audsettings obt_as;
346 req.format = aud_to_sdlfmt (as->fmt);
347 req.channels = as->nchannels;
348 req.samples = conf.nb_samples;
349 req.callback = sdl_callback;
352 if (sdl_open (&req, &obt)) {
356 err = sdl_to_audfmt(obt.format, &effective_fmt, &endianness);
362 obt_as.freq = obt.freq;
363 obt_as.nchannels = obt.channels;
364 obt_as.fmt = effective_fmt;
365 obt_as.endianness = endianness;
367 audio_pcm_init_info (&hw->info, &obt_as);
368 hw->samples = obt.samples;
376 static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...)
392 static void *sdl_audio_init (void)
394 SDLAudioState *s = &glob_sdl;
396 if (SDL_InitSubSystem (SDL_INIT_AUDIO)) {
397 sdl_logerr ("SDL failed to initialize audio subsystem\n");
401 s->mutex = SDL_CreateMutex ();
403 sdl_logerr ("Failed to create SDL mutex\n");
404 SDL_QuitSubSystem (SDL_INIT_AUDIO);
408 s->sem = SDL_CreateSemaphore (0);
410 sdl_logerr ("Failed to create SDL semaphore\n");
411 SDL_DestroyMutex (s->mutex);
412 SDL_QuitSubSystem (SDL_INIT_AUDIO);
419 static void sdl_audio_fini (void *opaque)
421 SDLAudioState *s = opaque;
423 SDL_DestroySemaphore (s->sem);
424 SDL_DestroyMutex (s->mutex);
425 SDL_QuitSubSystem (SDL_INIT_AUDIO);
428 static struct audio_option sdl_options[] = {
432 .valp = &conf.nb_samples,
433 .descr = "Size of SDL buffer in samples"
435 { /* End of list */ }
438 static struct audio_pcm_ops sdl_pcm_ops = {
439 .init_out = sdl_init_out,
440 .fini_out = sdl_fini_out,
441 .run_out = sdl_run_out,
442 .write = sdl_write_out,
443 .ctl_out = sdl_ctl_out,
446 struct audio_driver sdl_audio_driver = {
448 .descr = "SDL http://www.libsdl.org",
449 .options = sdl_options,
450 .init = sdl_audio_init,
451 .fini = sdl_audio_fini,
452 .pcm_ops = &sdl_pcm_ops,
456 .voice_size_out = sizeof (SDLVoiceOut),