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
{
47 SDL_AudioDeviceID devid
;
50 typedef struct SDLVoiceIn
{
55 SDL_AudioDeviceID devid
;
58 static void G_GNUC_PRINTF (1, 2) sdl_logerr (const char *fmt
, ...)
63 AUD_vlog (AUDIO_CAP
, fmt
, ap
);
66 AUD_log (AUDIO_CAP
, "Reason: %s\n", SDL_GetError ());
69 static int aud_to_sdlfmt (AudioFormat fmt
)
78 case AUDIO_FORMAT_S16
:
81 case AUDIO_FORMAT_U16
:
84 case AUDIO_FORMAT_S32
:
87 /* no unsigned 32-bit support in SDL */
89 case AUDIO_FORMAT_F32
:
93 dolog ("Internal logic error: Bad audio format %d\n", fmt
);
101 static int sdl_to_audfmt(int sdlfmt
, AudioFormat
*fmt
, int *endianness
)
106 *fmt
= AUDIO_FORMAT_S8
;
111 *fmt
= AUDIO_FORMAT_U8
;
116 *fmt
= AUDIO_FORMAT_S16
;
121 *fmt
= AUDIO_FORMAT_U16
;
126 *fmt
= AUDIO_FORMAT_S16
;
131 *fmt
= AUDIO_FORMAT_U16
;
136 *fmt
= AUDIO_FORMAT_S32
;
141 *fmt
= AUDIO_FORMAT_S32
;
146 *fmt
= AUDIO_FORMAT_F32
;
151 *fmt
= AUDIO_FORMAT_F32
;
155 dolog ("Unrecognized SDL audio format %d\n", sdlfmt
);
162 static SDL_AudioDeviceID
sdl_open(SDL_AudioSpec
*req
, SDL_AudioSpec
*obt
,
165 SDL_AudioDeviceID devid
;
170 /* Make sure potential threads created by SDL don't hog signals. */
171 err
= sigfillset (&new);
173 dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno
));
176 err
= pthread_sigmask (SIG_BLOCK
, &new, &old
);
178 dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err
));
183 devid
= SDL_OpenAudioDevice(NULL
, rec
, req
, obt
, 0);
185 sdl_logerr("SDL_OpenAudioDevice for %s failed\n",
186 rec
? "recording" : "playback");
190 err
= pthread_sigmask (SIG_SETMASK
, &old
, NULL
);
192 dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n",
194 /* We have failed to restore original signal mask, all bets are off,
195 so exit the process */
202 static void sdl_close_out(SDLVoiceOut
*sdl
)
204 if (sdl
->initialized
) {
205 SDL_LockAudioDevice(sdl
->devid
);
207 SDL_UnlockAudioDevice(sdl
->devid
);
208 SDL_PauseAudioDevice(sdl
->devid
, 1);
209 sdl
->initialized
= 0;
212 SDL_CloseAudioDevice(sdl
->devid
);
217 static void sdl_callback_out(void *opaque
, Uint8
*buf
, int len
)
219 SDLVoiceOut
*sdl
= opaque
;
220 HWVoiceOut
*hw
= &sdl
->hw
;
224 /* dolog("callback_out: len=%d avail=%zu\n", len, hw->pending_emul); */
226 while (hw
->pending_emul
&& len
) {
227 size_t write_len
, start
;
229 start
= audio_ring_posb(hw
->pos_emul
, hw
->pending_emul
,
231 assert(start
< hw
->size_emul
);
233 write_len
= MIN(MIN(hw
->pending_emul
, len
),
234 hw
->size_emul
- start
);
236 memcpy(buf
, hw
->buf_emul
+ start
, write_len
);
237 hw
->pending_emul
-= write_len
;
243 /* clear remaining buffer that we couldn't fill with data */
245 audio_pcm_info_clear_buf(&hw
->info
, buf
,
246 len
/ hw
->info
.bytes_per_frame
);
250 static void sdl_close_in(SDLVoiceIn
*sdl
)
252 if (sdl
->initialized
) {
253 SDL_LockAudioDevice(sdl
->devid
);
255 SDL_UnlockAudioDevice(sdl
->devid
);
256 SDL_PauseAudioDevice(sdl
->devid
, 1);
257 sdl
->initialized
= 0;
260 SDL_CloseAudioDevice(sdl
->devid
);
265 static void sdl_callback_in(void *opaque
, Uint8
*buf
, int len
)
267 SDLVoiceIn
*sdl
= opaque
;
268 HWVoiceIn
*hw
= &sdl
->hw
;
274 /* dolog("callback_in: len=%d pending=%zu\n", len, hw->pending_emul); */
276 while (hw
->pending_emul
< hw
->size_emul
&& len
) {
277 size_t read_len
= MIN(len
, MIN(hw
->size_emul
- hw
->pos_emul
,
278 hw
->size_emul
- hw
->pending_emul
));
280 memcpy(hw
->buf_emul
+ hw
->pos_emul
, buf
, read_len
);
282 hw
->pending_emul
+= read_len
;
283 hw
->pos_emul
= (hw
->pos_emul
+ read_len
) % hw
->size_emul
;
289 #define SDL_WRAPPER_FUNC(name, ret_type, args_decl, args, dir) \
290 static ret_type glue(sdl_, name)args_decl \
293 glue(SDLVoice, dir) *sdl = (glue(SDLVoice, dir) *)hw; \
295 SDL_LockAudioDevice(sdl->devid); \
296 ret = glue(audio_generic_, name)args; \
297 SDL_UnlockAudioDevice(sdl->devid); \
302 #define SDL_WRAPPER_VOID_FUNC(name, args_decl, args, dir) \
303 static void glue(sdl_, name)args_decl \
305 glue(SDLVoice, dir) *sdl = (glue(SDLVoice, dir) *)hw; \
307 SDL_LockAudioDevice(sdl->devid); \
308 glue(audio_generic_, name)args; \
309 SDL_UnlockAudioDevice(sdl->devid); \
312 SDL_WRAPPER_FUNC(buffer_get_free
, size_t, (HWVoiceOut
*hw
), (hw
), Out
)
313 SDL_WRAPPER_FUNC(get_buffer_out
, void *, (HWVoiceOut
*hw
, size_t *size
),
315 SDL_WRAPPER_FUNC(put_buffer_out
, size_t,
316 (HWVoiceOut
*hw
, void *buf
, size_t size
), (hw
, buf
, size
), Out
)
317 SDL_WRAPPER_FUNC(write
, size_t,
318 (HWVoiceOut
*hw
, void *buf
, size_t size
), (hw
, buf
, size
), Out
)
319 SDL_WRAPPER_FUNC(read
, size_t, (HWVoiceIn
*hw
, void *buf
, size_t size
),
321 SDL_WRAPPER_FUNC(get_buffer_in
, void *, (HWVoiceIn
*hw
, size_t *size
),
323 SDL_WRAPPER_VOID_FUNC(put_buffer_in
, (HWVoiceIn
*hw
, void *buf
, size_t size
),
325 #undef SDL_WRAPPER_FUNC
326 #undef SDL_WRAPPER_VOID_FUNC
328 static void sdl_fini_out(HWVoiceOut
*hw
)
330 SDLVoiceOut
*sdl
= (SDLVoiceOut
*)hw
;
335 static int sdl_init_out(HWVoiceOut
*hw
, struct audsettings
*as
,
338 SDLVoiceOut
*sdl
= (SDLVoiceOut
*)hw
;
339 SDL_AudioSpec req
, obt
;
342 AudioFormat effective_fmt
;
343 Audiodev
*dev
= drv_opaque
;
344 AudiodevSdlPerDirectionOptions
*spdo
= dev
->u
.sdl
.out
;
345 struct audsettings obt_as
;
348 req
.format
= aud_to_sdlfmt (as
->fmt
);
349 req
.channels
= as
->nchannels
;
350 /* SDL samples are QEMU frames */
351 req
.samples
= audio_buffer_frames(
352 qapi_AudiodevSdlPerDirectionOptions_base(spdo
), as
, 11610);
353 req
.callback
= sdl_callback_out
;
357 sdl
->devid
= sdl_open(&req
, &obt
, 0);
362 err
= sdl_to_audfmt(obt
.format
, &effective_fmt
, &endianness
);
368 obt_as
.freq
= obt
.freq
;
369 obt_as
.nchannels
= obt
.channels
;
370 obt_as
.fmt
= effective_fmt
;
371 obt_as
.endianness
= endianness
;
373 audio_pcm_init_info (&hw
->info
, &obt_as
);
374 hw
->samples
= (spdo
->has_buffer_count
? spdo
->buffer_count
: 4) *
377 sdl
->initialized
= 1;
382 static void sdl_enable_out(HWVoiceOut
*hw
, bool enable
)
384 SDLVoiceOut
*sdl
= (SDLVoiceOut
*)hw
;
386 SDL_PauseAudioDevice(sdl
->devid
, !enable
);
389 static void sdl_fini_in(HWVoiceIn
*hw
)
391 SDLVoiceIn
*sdl
= (SDLVoiceIn
*)hw
;
396 static int sdl_init_in(HWVoiceIn
*hw
, audsettings
*as
, void *drv_opaque
)
398 SDLVoiceIn
*sdl
= (SDLVoiceIn
*)hw
;
399 SDL_AudioSpec req
, obt
;
402 AudioFormat effective_fmt
;
403 Audiodev
*dev
= drv_opaque
;
404 AudiodevSdlPerDirectionOptions
*spdo
= dev
->u
.sdl
.in
;
405 struct audsettings obt_as
;
408 req
.format
= aud_to_sdlfmt(as
->fmt
);
409 req
.channels
= as
->nchannels
;
410 /* SDL samples are QEMU frames */
411 req
.samples
= audio_buffer_frames(
412 qapi_AudiodevSdlPerDirectionOptions_base(spdo
), as
, 11610);
413 req
.callback
= sdl_callback_in
;
417 sdl
->devid
= sdl_open(&req
, &obt
, 1);
422 err
= sdl_to_audfmt(obt
.format
, &effective_fmt
, &endianness
);
428 obt_as
.freq
= obt
.freq
;
429 obt_as
.nchannels
= obt
.channels
;
430 obt_as
.fmt
= effective_fmt
;
431 obt_as
.endianness
= endianness
;
433 audio_pcm_init_info(&hw
->info
, &obt_as
);
434 hw
->samples
= (spdo
->has_buffer_count
? spdo
->buffer_count
: 4) *
436 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
437 hw
->buf_emul
= g_malloc(hw
->size_emul
);
438 hw
->pos_emul
= hw
->pending_emul
= 0;
440 sdl
->initialized
= 1;
445 static void sdl_enable_in(HWVoiceIn
*hw
, bool enable
)
447 SDLVoiceIn
*sdl
= (SDLVoiceIn
*)hw
;
449 SDL_PauseAudioDevice(sdl
->devid
, !enable
);
452 static void *sdl_audio_init(Audiodev
*dev
)
454 if (SDL_InitSubSystem (SDL_INIT_AUDIO
)) {
455 sdl_logerr ("SDL failed to initialize audio subsystem\n");
462 static void sdl_audio_fini (void *opaque
)
464 SDL_QuitSubSystem (SDL_INIT_AUDIO
);
467 static struct audio_pcm_ops sdl_pcm_ops
= {
468 .init_out
= sdl_init_out
,
469 .fini_out
= sdl_fini_out
,
470 /* wrapper for audio_generic_write */
472 /* wrapper for audio_generic_buffer_get_free */
473 .buffer_get_free
= sdl_buffer_get_free
,
474 /* wrapper for audio_generic_get_buffer_out */
475 .get_buffer_out
= sdl_get_buffer_out
,
476 /* wrapper for audio_generic_put_buffer_out */
477 .put_buffer_out
= sdl_put_buffer_out
,
478 .enable_out
= sdl_enable_out
,
479 .init_in
= sdl_init_in
,
480 .fini_in
= sdl_fini_in
,
481 /* wrapper for audio_generic_read */
483 /* wrapper for audio_generic_get_buffer_in */
484 .get_buffer_in
= sdl_get_buffer_in
,
485 /* wrapper for audio_generic_put_buffer_in */
486 .put_buffer_in
= sdl_put_buffer_in
,
487 .enable_in
= sdl_enable_in
,
490 static struct audio_driver sdl_audio_driver
= {
492 .descr
= "SDL http://www.libsdl.org",
493 .init
= sdl_audio_init
,
494 .fini
= sdl_audio_fini
,
495 .pcm_ops
= &sdl_pcm_ops
,
497 .max_voices_out
= INT_MAX
,
498 .max_voices_in
= INT_MAX
,
499 .voice_size_out
= sizeof(SDLVoiceOut
),
500 .voice_size_in
= sizeof(SDLVoiceIn
),
503 static void register_audio_sdl(void)
505 audio_driver_register(&sdl_audio_driver
);
507 type_init(register_audio_sdl
);