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 "qemu/osdep.h"
27 #include <SDL_thread.h>
28 #include "qemu/module.h"
33 #define _POSIX_PTHREAD_SEMANTICS 1
34 #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
39 #define AUDIO_CAP "sdl"
40 #include "audio_int.h"
42 typedef struct SDLVoiceOut
{
46 static struct SDLAudioState
{
52 typedef struct SDLAudioState SDLAudioState
;
54 static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt
, ...)
59 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
62 AUD_log (AUDIO_CAP
, "Reason: %s\n", SDL_GetError ());
65 static int aud_to_sdlfmt (AudioFormat fmt
)
74 case AUDIO_FORMAT_S16
:
77 case AUDIO_FORMAT_U16
:
81 dolog ("Internal logic error: Bad audio format %d\n", fmt
);
89 static int sdl_to_audfmt(int sdlfmt
, AudioFormat
*fmt
, int *endianness
)
94 *fmt
= AUDIO_FORMAT_S8
;
99 *fmt
= AUDIO_FORMAT_U8
;
104 *fmt
= AUDIO_FORMAT_S16
;
109 *fmt
= AUDIO_FORMAT_U16
;
114 *fmt
= AUDIO_FORMAT_S16
;
119 *fmt
= AUDIO_FORMAT_U16
;
123 dolog ("Unrecognized SDL audio format %d\n", sdlfmt
);
130 static int sdl_open (SDL_AudioSpec
*req
, SDL_AudioSpec
*obt
)
137 /* Make sure potential threads created by SDL don't hog signals. */
138 err
= sigfillset (&new);
140 dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno
));
143 err
= pthread_sigmask (SIG_BLOCK
, &new, &old
);
145 dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err
));
150 status
= SDL_OpenAudio (req
, obt
);
152 sdl_logerr ("SDL_OpenAudio failed\n");
156 err
= pthread_sigmask (SIG_SETMASK
, &old
, NULL
);
158 dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n",
160 /* We have failed to restore original signal mask, all bets are off,
161 so exit the process */
168 static void sdl_close (SDLAudioState
*s
)
170 if (s
->initialized
) {
180 static void sdl_callback (void *opaque
, Uint8
*buf
, int len
)
182 SDLVoiceOut
*sdl
= opaque
;
183 SDLAudioState
*s
= &glob_sdl
;
184 HWVoiceOut
*hw
= &sdl
->hw
;
190 /* dolog ("in callback samples=%zu live=%zu\n", samples, sdl->live); */
192 while (hw
->pending_emul
&& len
) {
194 ssize_t start
= ((ssize_t
) hw
->pos_emul
) - hw
->pending_emul
;
196 start
+= hw
->size_emul
;
198 assert(start
>= 0 && start
< hw
->size_emul
);
200 write_len
= MIN(MIN(hw
->pending_emul
, len
),
201 hw
->size_emul
- start
);
203 memcpy(buf
, hw
->buf_emul
+ start
, write_len
);
204 hw
->pending_emul
-= write_len
;
209 /* clear remaining buffer that we couldn't fill with data */
215 #define SDL_WRAPPER_FUNC(name, ret_type, args_decl, args, fail, unlock) \
216 static ret_type glue(sdl_, name)args_decl \
222 ret = glue(audio_generic_, name)args; \
228 SDL_WRAPPER_FUNC(get_buffer_out
, void *, (HWVoiceOut
*hw
, size_t *size
),
229 (hw
, size
), *size
= 0, sdl_unlock
)
230 SDL_WRAPPER_FUNC(put_buffer_out_nowrite
, size_t,
231 (HWVoiceOut
*hw
, void *buf
, size_t size
), (hw
, buf
, size
),
232 /*nothing*/, sdl_unlock_and_post
)
233 SDL_WRAPPER_FUNC(write
, size_t,
234 (HWVoiceOut
*hw
, void *buf
, size_t size
), (hw
, buf
, size
),
235 /*nothing*/, sdl_unlock_and_post
)
237 #undef SDL_WRAPPER_FUNC
239 static void sdl_fini_out (HWVoiceOut
*hw
)
243 sdl_close (&glob_sdl
);
246 static int sdl_init_out(HWVoiceOut
*hw
, struct audsettings
*as
,
249 SDLVoiceOut
*sdl
= (SDLVoiceOut
*) hw
;
250 SDLAudioState
*s
= &glob_sdl
;
251 SDL_AudioSpec req
, obt
;
254 AudioFormat effective_fmt
;
255 struct audsettings obt_as
;
258 req
.format
= aud_to_sdlfmt (as
->fmt
);
259 req
.channels
= as
->nchannels
;
260 req
.samples
= audio_buffer_samples(s
->dev
->u
.sdl
.out
, as
, 11610);
261 req
.callback
= sdl_callback
;
264 if (sdl_open (&req
, &obt
)) {
268 err
= sdl_to_audfmt(obt
.format
, &effective_fmt
, &endianness
);
274 obt_as
.freq
= obt
.freq
;
275 obt_as
.nchannels
= obt
.channels
;
276 obt_as
.fmt
= effective_fmt
;
277 obt_as
.endianness
= endianness
;
279 audio_pcm_init_info (&hw
->info
, &obt_as
);
280 hw
->samples
= obt
.samples
;
288 static void sdl_enable_out(HWVoiceOut
*hw
, bool enable
)
290 SDL_PauseAudio(!enable
);
293 static void *sdl_audio_init(Audiodev
*dev
)
295 SDLAudioState
*s
= &glob_sdl
;
296 if (s
->driver_created
) {
297 sdl_logerr("Can't create multiple sdl backends\n");
301 if (SDL_InitSubSystem (SDL_INIT_AUDIO
)) {
302 sdl_logerr ("SDL failed to initialize audio subsystem\n");
306 s
->driver_created
= true;
311 static void sdl_audio_fini (void *opaque
)
313 SDLAudioState
*s
= opaque
;
315 SDL_QuitSubSystem (SDL_INIT_AUDIO
);
316 s
->driver_created
= false;
320 static struct audio_pcm_ops sdl_pcm_ops
= {
321 .init_out
= sdl_init_out
,
322 .fini_out
= sdl_fini_out
,
324 .get_buffer_out
= sdl_get_buffer_out
,
325 .put_buffer_out
= sdl_put_buffer_out_nowrite
,
326 .enable_out
= sdl_enable_out
,
329 static struct audio_driver sdl_audio_driver
= {
331 .descr
= "SDL http://www.libsdl.org",
332 .init
= sdl_audio_init
,
333 .fini
= sdl_audio_fini
,
334 .pcm_ops
= &sdl_pcm_ops
,
338 .voice_size_out
= sizeof (SDLVoiceOut
),
342 static void register_audio_sdl(void)
344 audio_driver_register(&sdl_audio_driver
);
346 type_init(register_audio_sdl
);