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
24 #include "qemu/osdep.h"
26 #include <SDL_thread.h>
27 #include "qemu-common.h"
32 #define _POSIX_PTHREAD_SEMANTICS 1
33 #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
38 #define AUDIO_CAP "sdl"
39 #include "audio_int.h"
41 typedef struct SDLVoiceOut {
54 static struct SDLAudioState {
61 typedef struct SDLAudioState SDLAudioState;
63 static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
68 AUD_vlog (AUDIO_CAP, fmt, ap);
71 AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
74 static int sdl_lock (SDLAudioState *s, const char *forfn)
76 if (SDL_LockMutex (s->mutex)) {
77 sdl_logerr ("SDL_LockMutex for %s failed\n", forfn);
83 static int sdl_unlock (SDLAudioState *s, const char *forfn)
85 if (SDL_UnlockMutex (s->mutex)) {
86 sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn);
92 static int sdl_post (SDLAudioState *s, const char *forfn)
94 if (SDL_SemPost (s->sem)) {
95 sdl_logerr ("SDL_SemPost for %s failed\n", forfn);
101 static int sdl_wait (SDLAudioState *s, const char *forfn)
103 if (SDL_SemWait (s->sem)) {
104 sdl_logerr ("SDL_SemWait for %s failed\n", forfn);
110 static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn)
112 if (sdl_unlock (s, forfn)) {
116 return sdl_post (s, forfn);
119 static int aud_to_sdlfmt (audfmt_e fmt)
135 dolog ("Internal logic error: Bad audio format %d\n", fmt);
143 static int sdl_to_audfmt(int sdlfmt, audfmt_e *fmt, int *endianness)
177 dolog ("Unrecognized SDL audio format %d\n", sdlfmt);
184 static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
191 /* Make sure potential threads created by SDL don't hog signals. */
192 err = sigfillset (&new);
194 dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno));
197 err = pthread_sigmask (SIG_BLOCK, &new, &old);
199 dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err));
204 status = SDL_OpenAudio (req, obt);
206 sdl_logerr ("SDL_OpenAudio failed\n");
210 err = pthread_sigmask (SIG_SETMASK, &old, NULL);
212 dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n",
214 /* We have failed to restore original signal mask, all bets are off,
215 so exit the process */
222 static void sdl_close (SDLAudioState *s)
224 if (s->initialized) {
225 sdl_lock (s, "sdl_close");
227 sdl_unlock_and_post (s, "sdl_close");
234 static void sdl_callback (void *opaque, Uint8 *buf, int len)
236 SDLVoiceOut *sdl = opaque;
237 SDLAudioState *s = &glob_sdl;
238 HWVoiceOut *hw = &sdl->hw;
239 int samples = len >> hw->info.shift;
248 /* dolog ("in callback samples=%d\n", samples); */
249 sdl_wait (s, "sdl_callback");
254 if (sdl_lock (s, "sdl_callback")) {
258 if (audio_bug (AUDIO_FUNC, sdl->live < 0 || sdl->live > hw->samples)) {
259 dolog ("sdl->live=%d hw->samples=%d\n",
260 sdl->live, hw->samples);
268 /* dolog ("in callback live=%d\n", live); */
269 to_mix = audio_MIN (samples, sdl->live);
272 int chunk = audio_MIN (to_mix, hw->samples - hw->rpos);
273 struct st_sample *src = hw->mix_buf + hw->rpos;
275 /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
276 hw->clip (buf, src, chunk);
277 sdl->rpos = (sdl->rpos + chunk) % hw->samples;
279 buf += chunk << hw->info.shift;
286 if (sdl_unlock (s, "sdl_callback")) {
290 /* dolog ("done len=%d\n", len); */
293 static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
295 return audio_pcm_sw_write (sw, buf, len);
298 static int sdl_run_out (HWVoiceOut *hw, int live)
301 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
302 SDLAudioState *s = &glob_sdl;
304 if (sdl_lock (s, "sdl_run_out")) {
308 if (sdl->decr > live) {
309 ldebug ("sdl->decr %d live %d sdl->live %d\n",
315 decr = audio_MIN (sdl->decr, live);
318 sdl->live = live - decr;
319 hw->rpos = sdl->rpos;
322 sdl_unlock_and_post (s, "sdl_run_out");
325 sdl_unlock (s, "sdl_run_out");
330 static void sdl_fini_out (HWVoiceOut *hw)
334 sdl_close (&glob_sdl);
337 static int sdl_init_out(HWVoiceOut *hw, struct audsettings *as,
340 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
341 SDLAudioState *s = &glob_sdl;
342 SDL_AudioSpec req, obt;
345 audfmt_e effective_fmt;
346 struct audsettings obt_as;
349 req.format = aud_to_sdlfmt (as->fmt);
350 req.channels = as->nchannels;
351 req.samples = conf.nb_samples;
352 req.callback = sdl_callback;
355 if (sdl_open (&req, &obt)) {
359 err = sdl_to_audfmt(obt.format, &effective_fmt, &endianness);
365 obt_as.freq = obt.freq;
366 obt_as.nchannels = obt.channels;
367 obt_as.fmt = effective_fmt;
368 obt_as.endianness = endianness;
370 audio_pcm_init_info (&hw->info, &obt_as);
371 hw->samples = obt.samples;
379 static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...)
395 static void *sdl_audio_init (void)
397 SDLAudioState *s = &glob_sdl;
398 if (s->driver_created) {
399 sdl_logerr("Can't create multiple sdl backends\n");
403 if (SDL_InitSubSystem (SDL_INIT_AUDIO)) {
404 sdl_logerr ("SDL failed to initialize audio subsystem\n");
408 s->mutex = SDL_CreateMutex ();
410 sdl_logerr ("Failed to create SDL mutex\n");
411 SDL_QuitSubSystem (SDL_INIT_AUDIO);
415 s->sem = SDL_CreateSemaphore (0);
417 sdl_logerr ("Failed to create SDL semaphore\n");
418 SDL_DestroyMutex (s->mutex);
419 SDL_QuitSubSystem (SDL_INIT_AUDIO);
423 s->driver_created = true;
427 static void sdl_audio_fini (void *opaque)
429 SDLAudioState *s = opaque;
431 SDL_DestroySemaphore (s->sem);
432 SDL_DestroyMutex (s->mutex);
433 SDL_QuitSubSystem (SDL_INIT_AUDIO);
434 s->driver_created = false;
437 static struct audio_option sdl_options[] = {
441 .valp = &conf.nb_samples,
442 .descr = "Size of SDL buffer in samples"
444 { /* End of list */ }
447 static struct audio_pcm_ops sdl_pcm_ops = {
448 .init_out = sdl_init_out,
449 .fini_out = sdl_fini_out,
450 .run_out = sdl_run_out,
451 .write = sdl_write_out,
452 .ctl_out = sdl_ctl_out,
455 struct audio_driver sdl_audio_driver = {
457 .descr = "SDL http://www.libsdl.org",
458 .options = sdl_options,
459 .init = sdl_audio_init,
460 .fini = sdl_audio_fini,
461 .pcm_ops = &sdl_pcm_ops,
465 .voice_size_out = sizeof (SDLVoiceOut),