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 {
47 static struct SDLAudioState {
53 typedef struct SDLAudioState SDLAudioState;
55 static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
60 AUD_vlog (AUDIO_CAP, fmt, ap);
63 AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
66 static int aud_to_sdlfmt (AudioFormat fmt)
75 case AUDIO_FORMAT_S16:
78 case AUDIO_FORMAT_U16:
82 dolog ("Internal logic error: Bad audio format %d\n", fmt);
90 static int sdl_to_audfmt(int sdlfmt, AudioFormat *fmt, int *endianness)
95 *fmt = AUDIO_FORMAT_S8;
100 *fmt = AUDIO_FORMAT_U8;
105 *fmt = AUDIO_FORMAT_S16;
110 *fmt = AUDIO_FORMAT_U16;
115 *fmt = AUDIO_FORMAT_S16;
120 *fmt = AUDIO_FORMAT_U16;
124 dolog ("Unrecognized SDL audio format %d\n", sdlfmt);
131 static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
138 /* Make sure potential threads created by SDL don't hog signals. */
139 err = sigfillset (&new);
141 dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno));
144 err = pthread_sigmask (SIG_BLOCK, &new, &old);
146 dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err));
151 status = SDL_OpenAudio (req, obt);
153 sdl_logerr ("SDL_OpenAudio failed\n");
157 err = pthread_sigmask (SIG_SETMASK, &old, NULL);
159 dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n",
161 /* We have failed to restore original signal mask, all bets are off,
162 so exit the process */
169 static void sdl_close (SDLAudioState *s)
171 if (s->initialized) {
181 static void sdl_callback (void *opaque, Uint8 *buf, int len)
183 SDLVoiceOut *sdl = opaque;
184 SDLAudioState *s = &glob_sdl;
185 HWVoiceOut *hw = &sdl->hw;
186 int samples = len >> hw->info.shift;
189 if (s->exit || !sdl->live) {
193 /* dolog ("in callback samples=%d live=%d\n", samples, sdl->live); */
195 to_mix = audio_MIN(samples, sdl->live);
198 int chunk = audio_MIN(to_mix, hw->samples - hw->rpos);
199 struct st_sample *src = hw->mix_buf + hw->rpos;
201 /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
202 hw->clip(buf, src, chunk);
203 hw->rpos = (hw->rpos + chunk) % hw->samples;
205 buf += chunk << hw->info.shift;
211 /* dolog ("done len=%d\n", len); */
213 /* SDL2 does not clear the remaining buffer for us, so do it on our own */
215 memset(buf, 0, samples << hw->info.shift);
219 static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
221 return audio_pcm_sw_write (sw, buf, len);
224 static int sdl_run_out (HWVoiceOut *hw, int live)
227 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
231 if (sdl->decr > live) {
232 ldebug ("sdl->decr %d live %d sdl->live %d\n",
238 decr = audio_MIN (sdl->decr, live);
248 static void sdl_fini_out (HWVoiceOut *hw)
252 sdl_close (&glob_sdl);
255 static int sdl_init_out(HWVoiceOut *hw, struct audsettings *as,
258 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
259 SDLAudioState *s = &glob_sdl;
260 SDL_AudioSpec req, obt;
263 AudioFormat effective_fmt;
264 struct audsettings obt_as;
267 req.format = aud_to_sdlfmt (as->fmt);
268 req.channels = as->nchannels;
269 req.samples = audio_buffer_samples(s->dev->u.sdl.out, as, 11610);
270 req.callback = sdl_callback;
273 if (sdl_open (&req, &obt)) {
277 err = sdl_to_audfmt(obt.format, &effective_fmt, &endianness);
283 obt_as.freq = obt.freq;
284 obt_as.nchannels = obt.channels;
285 obt_as.fmt = effective_fmt;
286 obt_as.endianness = endianness;
288 audio_pcm_init_info (&hw->info, &obt_as);
289 hw->samples = obt.samples;
297 static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...)
313 static void *sdl_audio_init(Audiodev *dev)
315 SDLAudioState *s = &glob_sdl;
316 if (s->driver_created) {
317 sdl_logerr("Can't create multiple sdl backends\n");
321 if (SDL_InitSubSystem (SDL_INIT_AUDIO)) {
322 sdl_logerr ("SDL failed to initialize audio subsystem\n");
326 s->driver_created = true;
331 static void sdl_audio_fini (void *opaque)
333 SDLAudioState *s = opaque;
335 SDL_QuitSubSystem (SDL_INIT_AUDIO);
336 s->driver_created = false;
340 static struct audio_pcm_ops sdl_pcm_ops = {
341 .init_out = sdl_init_out,
342 .fini_out = sdl_fini_out,
343 .run_out = sdl_run_out,
344 .write = sdl_write_out,
345 .ctl_out = sdl_ctl_out,
348 static struct audio_driver sdl_audio_driver = {
350 .descr = "SDL http://www.libsdl.org",
351 .init = sdl_audio_init,
352 .fini = sdl_audio_fini,
353 .pcm_ops = &sdl_pcm_ops,
357 .voice_size_out = sizeof (SDLVoiceOut),
361 static void register_audio_sdl(void)
363 audio_driver_register(&sdl_audio_driver);
365 type_init(register_audio_sdl);