blob: 9db5ac92bcc0476fea416bfed68579c8fb161bb6 [file] [log] [blame]
bellard85571bc2004-11-07 18:04:02 +00001/*
bellard1d14ffa2005-10-30 18:58:22 +00002 * QEMU SDL audio driver
3 *
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
5 *
bellard85571bc2004-11-07 18:04:02 +00006 * 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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
Peter Maydell6086a562016-01-18 17:33:52 +000024#include "qemu/osdep.h"
bellard9f059ec2004-11-14 18:59:52 +000025#include <SDL.h>
26#include <SDL_thread.h>
pbrook87ecb682007-11-17 17:14:51 +000027#include "qemu-common.h"
28#include "audio.h"
bellard85571bc2004-11-07 18:04:02 +000029
thse784ba72007-07-11 23:23:15 +000030#ifndef _WIN32
31#ifdef __sun__
32#define _POSIX_PTHREAD_SEMANTICS 1
blueswir1c5e97232009-03-07 20:06:23 +000033#elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
blueswir19b4c14c2008-10-25 11:19:14 +000034#include <pthread.h>
thse784ba72007-07-11 23:23:15 +000035#endif
thse784ba72007-07-11 23:23:15 +000036#endif
37
bellard1d14ffa2005-10-30 18:58:22 +000038#define AUDIO_CAP "sdl"
39#include "audio_int.h"
bellardfb065182004-11-09 23:09:44 +000040
Thomas Huthbcf19772017-01-31 09:46:38 +010041#define USE_SEMAPHORE (SDL_MAJOR_VERSION < 2)
42
bellard1d14ffa2005-10-30 18:58:22 +000043typedef struct SDLVoiceOut {
44 HWVoiceOut hw;
45 int live;
Thomas Huthbcf19772017-01-31 09:46:38 +010046#if USE_SEMAPHORE
malcff541492010-01-17 00:25:29 +030047 int rpos;
Thomas Huthbcf19772017-01-31 09:46:38 +010048#endif
bellard1d14ffa2005-10-30 18:58:22 +000049 int decr;
50} SDLVoiceOut;
bellard85571bc2004-11-07 18:04:02 +000051
52static struct {
53 int nb_samples;
54} conf = {
Juan Quintela1a40d5e2009-08-11 02:31:17 +020055 .nb_samples = 1024
bellard85571bc2004-11-07 18:04:02 +000056};
57
blueswir1b1d8e522008-10-26 13:43:07 +000058static struct SDLAudioState {
bellard85571bc2004-11-07 18:04:02 +000059 int exit;
Thomas Huthbcf19772017-01-31 09:46:38 +010060#if USE_SEMAPHORE
bellard85571bc2004-11-07 18:04:02 +000061 SDL_mutex *mutex;
62 SDL_sem *sem;
Thomas Huthbcf19772017-01-31 09:46:38 +010063#endif
bellard85571bc2004-11-07 18:04:02 +000064 int initialized;
Kővágó, Zoltán81ebb072015-06-03 23:03:55 +020065 bool driver_created;
bellard85571bc2004-11-07 18:04:02 +000066} glob_sdl;
67typedef struct SDLAudioState SDLAudioState;
68
bellard1d14ffa2005-10-30 18:58:22 +000069static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
bellard85571bc2004-11-07 18:04:02 +000070{
bellard1d14ffa2005-10-30 18:58:22 +000071 va_list ap;
72
73 va_start (ap, fmt);
74 AUD_vlog (AUDIO_CAP, fmt, ap);
75 va_end (ap);
76
77 AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
bellard85571bc2004-11-07 18:04:02 +000078}
79
bellard1d14ffa2005-10-30 18:58:22 +000080static int sdl_lock (SDLAudioState *s, const char *forfn)
bellard85571bc2004-11-07 18:04:02 +000081{
Thomas Huthbcf19772017-01-31 09:46:38 +010082#if USE_SEMAPHORE
bellard85571bc2004-11-07 18:04:02 +000083 if (SDL_LockMutex (s->mutex)) {
bellard1d14ffa2005-10-30 18:58:22 +000084 sdl_logerr ("SDL_LockMutex for %s failed\n", forfn);
bellard85571bc2004-11-07 18:04:02 +000085 return -1;
86 }
Thomas Huthbcf19772017-01-31 09:46:38 +010087#else
88 SDL_LockAudio();
89#endif
90
bellard85571bc2004-11-07 18:04:02 +000091 return 0;
92}
93
bellard1d14ffa2005-10-30 18:58:22 +000094static int sdl_unlock (SDLAudioState *s, const char *forfn)
bellard85571bc2004-11-07 18:04:02 +000095{
Thomas Huthbcf19772017-01-31 09:46:38 +010096#if USE_SEMAPHORE
bellard85571bc2004-11-07 18:04:02 +000097 if (SDL_UnlockMutex (s->mutex)) {
bellard1d14ffa2005-10-30 18:58:22 +000098 sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn);
bellard85571bc2004-11-07 18:04:02 +000099 return -1;
100 }
Thomas Huthbcf19772017-01-31 09:46:38 +0100101#else
102 SDL_UnlockAudio();
103#endif
104
bellard85571bc2004-11-07 18:04:02 +0000105 return 0;
106}
107
bellard1d14ffa2005-10-30 18:58:22 +0000108static int sdl_post (SDLAudioState *s, const char *forfn)
bellard85571bc2004-11-07 18:04:02 +0000109{
Thomas Huthbcf19772017-01-31 09:46:38 +0100110#if USE_SEMAPHORE
bellard85571bc2004-11-07 18:04:02 +0000111 if (SDL_SemPost (s->sem)) {
bellard1d14ffa2005-10-30 18:58:22 +0000112 sdl_logerr ("SDL_SemPost for %s failed\n", forfn);
bellard85571bc2004-11-07 18:04:02 +0000113 return -1;
114 }
Thomas Huthbcf19772017-01-31 09:46:38 +0100115#endif
116
bellard85571bc2004-11-07 18:04:02 +0000117 return 0;
118}
119
Thomas Huthbcf19772017-01-31 09:46:38 +0100120#if USE_SEMAPHORE
bellard1d14ffa2005-10-30 18:58:22 +0000121static int sdl_wait (SDLAudioState *s, const char *forfn)
bellard85571bc2004-11-07 18:04:02 +0000122{
123 if (SDL_SemWait (s->sem)) {
bellard1d14ffa2005-10-30 18:58:22 +0000124 sdl_logerr ("SDL_SemWait for %s failed\n", forfn);
bellard85571bc2004-11-07 18:04:02 +0000125 return -1;
126 }
127 return 0;
128}
Thomas Huthbcf19772017-01-31 09:46:38 +0100129#endif
bellard85571bc2004-11-07 18:04:02 +0000130
bellard1d14ffa2005-10-30 18:58:22 +0000131static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn)
bellard85571bc2004-11-07 18:04:02 +0000132{
bellard1d14ffa2005-10-30 18:58:22 +0000133 if (sdl_unlock (s, forfn)) {
bellard85571bc2004-11-07 18:04:02 +0000134 return -1;
bellard1d14ffa2005-10-30 18:58:22 +0000135 }
bellard85571bc2004-11-07 18:04:02 +0000136
bellard1d14ffa2005-10-30 18:58:22 +0000137 return sdl_post (s, forfn);
bellard85571bc2004-11-07 18:04:02 +0000138}
139
Serge Ziryukin6c557ab2010-04-22 14:14:24 +0300140static int aud_to_sdlfmt (audfmt_e fmt)
bellard85571bc2004-11-07 18:04:02 +0000141{
bellard85571bc2004-11-07 18:04:02 +0000142 switch (fmt) {
bellard1d14ffa2005-10-30 18:58:22 +0000143 case AUD_FMT_S8:
bellard1d14ffa2005-10-30 18:58:22 +0000144 return AUDIO_S8;
145
146 case AUD_FMT_U8:
bellard1d14ffa2005-10-30 18:58:22 +0000147 return AUDIO_U8;
148
149 case AUD_FMT_S16:
bellard1d14ffa2005-10-30 18:58:22 +0000150 return AUDIO_S16LSB;
151
152 case AUD_FMT_U16:
bellard1d14ffa2005-10-30 18:58:22 +0000153 return AUDIO_U16LSB;
154
bellard85571bc2004-11-07 18:04:02 +0000155 default:
bellard1d14ffa2005-10-30 18:58:22 +0000156 dolog ("Internal logic error: Bad audio format %d\n", fmt);
157#ifdef DEBUG_AUDIO
158 abort ();
159#endif
160 return AUDIO_U8;
bellard85571bc2004-11-07 18:04:02 +0000161 }
162}
163
Stefan Weil4ff97862011-03-13 15:44:02 +0100164static int sdl_to_audfmt(int sdlfmt, audfmt_e *fmt, int *endianness)
bellard85571bc2004-11-07 18:04:02 +0000165{
bellard1d14ffa2005-10-30 18:58:22 +0000166 switch (sdlfmt) {
167 case AUDIO_S8:
Stefan Weil4ff97862011-03-13 15:44:02 +0100168 *endianness = 0;
bellard1d14ffa2005-10-30 18:58:22 +0000169 *fmt = AUD_FMT_S8;
170 break;
171
172 case AUDIO_U8:
Stefan Weil4ff97862011-03-13 15:44:02 +0100173 *endianness = 0;
bellard1d14ffa2005-10-30 18:58:22 +0000174 *fmt = AUD_FMT_U8;
175 break;
176
177 case AUDIO_S16LSB:
Stefan Weil4ff97862011-03-13 15:44:02 +0100178 *endianness = 0;
bellard1d14ffa2005-10-30 18:58:22 +0000179 *fmt = AUD_FMT_S16;
180 break;
181
182 case AUDIO_U16LSB:
Stefan Weil4ff97862011-03-13 15:44:02 +0100183 *endianness = 0;
bellard1d14ffa2005-10-30 18:58:22 +0000184 *fmt = AUD_FMT_U16;
185 break;
186
187 case AUDIO_S16MSB:
Stefan Weil4ff97862011-03-13 15:44:02 +0100188 *endianness = 1;
bellard1d14ffa2005-10-30 18:58:22 +0000189 *fmt = AUD_FMT_S16;
190 break;
191
192 case AUDIO_U16MSB:
Stefan Weil4ff97862011-03-13 15:44:02 +0100193 *endianness = 1;
bellard1d14ffa2005-10-30 18:58:22 +0000194 *fmt = AUD_FMT_U16;
195 break;
196
bellard85571bc2004-11-07 18:04:02 +0000197 default:
bellard1d14ffa2005-10-30 18:58:22 +0000198 dolog ("Unrecognized SDL audio format %d\n", sdlfmt);
199 return -1;
bellard85571bc2004-11-07 18:04:02 +0000200 }
bellard1d14ffa2005-10-30 18:58:22 +0000201
202 return 0;
bellard85571bc2004-11-07 18:04:02 +0000203}
204
205static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
206{
207 int status;
thse784ba72007-07-11 23:23:15 +0000208#ifndef _WIN32
malcd087bb32010-08-06 13:09:41 +0400209 int err;
thse784ba72007-07-11 23:23:15 +0000210 sigset_t new, old;
211
212 /* Make sure potential threads created by SDL don't hog signals. */
malcd087bb32010-08-06 13:09:41 +0400213 err = sigfillset (&new);
214 if (err) {
215 dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno));
malc60592ed2010-08-07 20:03:05 +0400216 return -1;
malcd087bb32010-08-06 13:09:41 +0400217 }
218 err = pthread_sigmask (SIG_BLOCK, &new, &old);
219 if (err) {
220 dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err));
221 return -1;
222 }
thse784ba72007-07-11 23:23:15 +0000223#endif
bellard85571bc2004-11-07 18:04:02 +0000224
225 status = SDL_OpenAudio (req, obt);
226 if (status) {
bellard1d14ffa2005-10-30 18:58:22 +0000227 sdl_logerr ("SDL_OpenAudio failed\n");
bellard85571bc2004-11-07 18:04:02 +0000228 }
thse784ba72007-07-11 23:23:15 +0000229
230#ifndef _WIN32
malcd087bb32010-08-06 13:09:41 +0400231 err = pthread_sigmask (SIG_SETMASK, &old, NULL);
232 if (err) {
233 dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n",
234 strerror (errno));
235 /* We have failed to restore original signal mask, all bets are off,
236 so exit the process */
237 exit (EXIT_FAILURE);
238 }
thse784ba72007-07-11 23:23:15 +0000239#endif
bellard85571bc2004-11-07 18:04:02 +0000240 return status;
241}
242
243static void sdl_close (SDLAudioState *s)
244{
245 if (s->initialized) {
bellard1d14ffa2005-10-30 18:58:22 +0000246 sdl_lock (s, "sdl_close");
bellard85571bc2004-11-07 18:04:02 +0000247 s->exit = 1;
bellard1d14ffa2005-10-30 18:58:22 +0000248 sdl_unlock_and_post (s, "sdl_close");
bellard85571bc2004-11-07 18:04:02 +0000249 SDL_PauseAudio (1);
250 SDL_CloseAudio ();
251 s->initialized = 0;
252 }
253}
254
255static void sdl_callback (void *opaque, Uint8 *buf, int len)
256{
bellard1d14ffa2005-10-30 18:58:22 +0000257 SDLVoiceOut *sdl = opaque;
bellard85571bc2004-11-07 18:04:02 +0000258 SDLAudioState *s = &glob_sdl;
bellard1d14ffa2005-10-30 18:58:22 +0000259 HWVoiceOut *hw = &sdl->hw;
260 int samples = len >> hw->info.shift;
bellard85571bc2004-11-07 18:04:02 +0000261
262 if (s->exit) {
263 return;
264 }
265
266 while (samples) {
bellard1d14ffa2005-10-30 18:58:22 +0000267 int to_mix, decr;
bellard85571bc2004-11-07 18:04:02 +0000268
malcff541492010-01-17 00:25:29 +0300269 /* dolog ("in callback samples=%d\n", samples); */
Thomas Huthbcf19772017-01-31 09:46:38 +0100270#if USE_SEMAPHORE
malcff541492010-01-17 00:25:29 +0300271 sdl_wait (s, "sdl_callback");
272 if (s->exit) {
273 return;
bellard85571bc2004-11-07 18:04:02 +0000274 }
275
malcff541492010-01-17 00:25:29 +0300276 if (sdl_lock (s, "sdl_callback")) {
277 return;
278 }
malc4839abe2009-09-30 16:25:55 +0400279
Alistair Francis470bcab2018-02-03 09:43:02 +0100280 if (audio_bug(__func__, sdl->live < 0 || sdl->live > hw->samples)) {
malcff541492010-01-17 00:25:29 +0300281 dolog ("sdl->live=%d hw->samples=%d\n",
282 sdl->live, hw->samples);
283 return;
284 }
285
286 if (!sdl->live) {
287 goto again;
288 }
Thomas Huthbcf19772017-01-31 09:46:38 +0100289#else
290 if (s->exit || !sdl->live) {
291 break;
292 }
293#endif
malcff541492010-01-17 00:25:29 +0300294
295 /* dolog ("in callback live=%d\n", live); */
296 to_mix = audio_MIN (samples, sdl->live);
297 decr = to_mix;
298 while (to_mix) {
299 int chunk = audio_MIN (to_mix, hw->samples - hw->rpos);
300 struct st_sample *src = hw->mix_buf + hw->rpos;
301
302 /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
303 hw->clip (buf, src, chunk);
Thomas Huthbcf19772017-01-31 09:46:38 +0100304#if USE_SEMAPHORE
malcff541492010-01-17 00:25:29 +0300305 sdl->rpos = (sdl->rpos + chunk) % hw->samples;
Thomas Huthbcf19772017-01-31 09:46:38 +0100306#else
307 hw->rpos = (hw->rpos + chunk) % hw->samples;
308#endif
malcff541492010-01-17 00:25:29 +0300309 to_mix -= chunk;
310 buf += chunk << hw->info.shift;
311 }
312 samples -= decr;
313 sdl->live -= decr;
314 sdl->decr += decr;
315
Thomas Huthbcf19772017-01-31 09:46:38 +0100316#if USE_SEMAPHORE
malcff541492010-01-17 00:25:29 +0300317 again:
318 if (sdl_unlock (s, "sdl_callback")) {
319 return;
320 }
Thomas Huthbcf19772017-01-31 09:46:38 +0100321#endif
malc4839abe2009-09-30 16:25:55 +0400322 }
malcff541492010-01-17 00:25:29 +0300323 /* dolog ("done len=%d\n", len); */
Thomas Huthbcf19772017-01-31 09:46:38 +0100324
325#if (SDL_MAJOR_VERSION >= 2)
326 /* SDL2 does not clear the remaining buffer for us, so do it on our own */
327 if (samples) {
328 memset(buf, 0, samples << hw->info.shift);
329 }
330#endif
bellard85571bc2004-11-07 18:04:02 +0000331}
332
bellard1d14ffa2005-10-30 18:58:22 +0000333static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
bellard85571bc2004-11-07 18:04:02 +0000334{
bellard1d14ffa2005-10-30 18:58:22 +0000335 return audio_pcm_sw_write (sw, buf, len);
336}
337
malcbdff2532009-09-18 11:37:39 +0400338static int sdl_run_out (HWVoiceOut *hw, int live)
bellard1d14ffa2005-10-30 18:58:22 +0000339{
malcbdff2532009-09-18 11:37:39 +0400340 int decr;
bellard1d14ffa2005-10-30 18:58:22 +0000341 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
342 SDLAudioState *s = &glob_sdl;
343
malc3fd7f632009-09-18 11:19:00 +0400344 if (sdl_lock (s, "sdl_run_out")) {
bellard1d14ffa2005-10-30 18:58:22 +0000345 return 0;
346 }
347
malcff541492010-01-17 00:25:29 +0300348 if (sdl->decr > live) {
349 ldebug ("sdl->decr %d live %d sdl->live %d\n",
350 sdl->decr,
351 live,
352 sdl->live);
353 }
354
355 decr = audio_MIN (sdl->decr, live);
356 sdl->decr -= decr;
357
Thomas Huthbcf19772017-01-31 09:46:38 +0100358#if USE_SEMAPHORE
malcff541492010-01-17 00:25:29 +0300359 sdl->live = live - decr;
360 hw->rpos = sdl->rpos;
Thomas Huthbcf19772017-01-31 09:46:38 +0100361#else
362 sdl->live = live;
363#endif
bellard1d14ffa2005-10-30 18:58:22 +0000364
365 if (sdl->live > 0) {
malc3fd7f632009-09-18 11:19:00 +0400366 sdl_unlock_and_post (s, "sdl_run_out");
bellard1d14ffa2005-10-30 18:58:22 +0000367 }
368 else {
malc3fd7f632009-09-18 11:19:00 +0400369 sdl_unlock (s, "sdl_run_out");
bellard1d14ffa2005-10-30 18:58:22 +0000370 }
371 return decr;
372}
373
374static void sdl_fini_out (HWVoiceOut *hw)
375{
376 (void) hw;
377
bellard85571bc2004-11-07 18:04:02 +0000378 sdl_close (&glob_sdl);
379}
380
Kővágó, Zoltán5706db12015-06-03 23:03:47 +0200381static int sdl_init_out(HWVoiceOut *hw, struct audsettings *as,
382 void *drv_opaque)
bellard85571bc2004-11-07 18:04:02 +0000383{
bellard1d14ffa2005-10-30 18:58:22 +0000384 SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
bellard85571bc2004-11-07 18:04:02 +0000385 SDLAudioState *s = &glob_sdl;
386 SDL_AudioSpec req, obt;
Stefan Weil4ff97862011-03-13 15:44:02 +0100387 int endianness;
bellard1d14ffa2005-10-30 18:58:22 +0000388 int err;
389 audfmt_e effective_fmt;
malc1ea879e2008-12-03 22:48:44 +0000390 struct audsettings obt_as;
bellard85571bc2004-11-07 18:04:02 +0000391
bellardc0fe3822005-11-05 18:55:28 +0000392 req.freq = as->freq;
Serge Ziryukin6c557ab2010-04-22 14:14:24 +0300393 req.format = aud_to_sdlfmt (as->fmt);
bellardc0fe3822005-11-05 18:55:28 +0000394 req.channels = as->nchannels;
bellard85571bc2004-11-07 18:04:02 +0000395 req.samples = conf.nb_samples;
bellard85571bc2004-11-07 18:04:02 +0000396 req.callback = sdl_callback;
397 req.userdata = sdl;
398
bellard1d14ffa2005-10-30 18:58:22 +0000399 if (sdl_open (&req, &obt)) {
bellard85571bc2004-11-07 18:04:02 +0000400 return -1;
bellard1d14ffa2005-10-30 18:58:22 +0000401 }
bellard85571bc2004-11-07 18:04:02 +0000402
Stefan Weil4ff97862011-03-13 15:44:02 +0100403 err = sdl_to_audfmt(obt.format, &effective_fmt, &endianness);
bellard1d14ffa2005-10-30 18:58:22 +0000404 if (err) {
405 sdl_close (s);
406 return -1;
407 }
408
bellardc0fe3822005-11-05 18:55:28 +0000409 obt_as.freq = obt.freq;
410 obt_as.nchannels = obt.channels;
411 obt_as.fmt = effective_fmt;
Stefan Weil4ff97862011-03-13 15:44:02 +0100412 obt_as.endianness = endianness;
bellardc0fe3822005-11-05 18:55:28 +0000413
bellardd929eba2006-07-04 21:47:22 +0000414 audio_pcm_init_info (&hw->info, &obt_as);
bellardc0fe3822005-11-05 18:55:28 +0000415 hw->samples = obt.samples;
bellard85571bc2004-11-07 18:04:02 +0000416
417 s->initialized = 1;
418 s->exit = 0;
419 SDL_PauseAudio (0);
420 return 0;
421}
422
bellard1d14ffa2005-10-30 18:58:22 +0000423static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...)
bellard85571bc2004-11-07 18:04:02 +0000424{
425 (void) hw;
426
427 switch (cmd) {
428 case VOICE_ENABLE:
429 SDL_PauseAudio (0);
430 break;
431
432 case VOICE_DISABLE:
433 SDL_PauseAudio (1);
434 break;
435 }
436 return 0;
437}
438
439static void *sdl_audio_init (void)
440{
441 SDLAudioState *s = &glob_sdl;
Kővágó, Zoltán81ebb072015-06-03 23:03:55 +0200442 if (s->driver_created) {
443 sdl_logerr("Can't create multiple sdl backends\n");
444 return NULL;
445 }
bellard85571bc2004-11-07 18:04:02 +0000446
447 if (SDL_InitSubSystem (SDL_INIT_AUDIO)) {
bellard1d14ffa2005-10-30 18:58:22 +0000448 sdl_logerr ("SDL failed to initialize audio subsystem\n");
bellard85571bc2004-11-07 18:04:02 +0000449 return NULL;
450 }
451
Thomas Huthbcf19772017-01-31 09:46:38 +0100452#if USE_SEMAPHORE
bellard85571bc2004-11-07 18:04:02 +0000453 s->mutex = SDL_CreateMutex ();
454 if (!s->mutex) {
bellard1d14ffa2005-10-30 18:58:22 +0000455 sdl_logerr ("Failed to create SDL mutex\n");
bellard85571bc2004-11-07 18:04:02 +0000456 SDL_QuitSubSystem (SDL_INIT_AUDIO);
457 return NULL;
458 }
459
460 s->sem = SDL_CreateSemaphore (0);
461 if (!s->sem) {
bellard1d14ffa2005-10-30 18:58:22 +0000462 sdl_logerr ("Failed to create SDL semaphore\n");
bellard85571bc2004-11-07 18:04:02 +0000463 SDL_DestroyMutex (s->mutex);
464 SDL_QuitSubSystem (SDL_INIT_AUDIO);
465 return NULL;
466 }
Thomas Huthbcf19772017-01-31 09:46:38 +0100467#endif
bellard85571bc2004-11-07 18:04:02 +0000468
Kővágó, Zoltán81ebb072015-06-03 23:03:55 +0200469 s->driver_created = true;
bellard85571bc2004-11-07 18:04:02 +0000470 return s;
471}
472
473static void sdl_audio_fini (void *opaque)
474{
475 SDLAudioState *s = opaque;
476 sdl_close (s);
Thomas Huthbcf19772017-01-31 09:46:38 +0100477#if USE_SEMAPHORE
bellard85571bc2004-11-07 18:04:02 +0000478 SDL_DestroySemaphore (s->sem);
479 SDL_DestroyMutex (s->mutex);
Thomas Huthbcf19772017-01-31 09:46:38 +0100480#endif
bellard85571bc2004-11-07 18:04:02 +0000481 SDL_QuitSubSystem (SDL_INIT_AUDIO);
Kővágó, Zoltán81ebb072015-06-03 23:03:55 +0200482 s->driver_created = false;
bellard85571bc2004-11-07 18:04:02 +0000483}
484
bellard1d14ffa2005-10-30 18:58:22 +0000485static struct audio_option sdl_options[] = {
malc98f9f482009-08-11 20:48:02 +0400486 {
487 .name = "SAMPLES",
488 .tag = AUD_OPT_INT,
489 .valp = &conf.nb_samples,
490 .descr = "Size of SDL buffer in samples"
491 },
Juan Quintela2700efa2009-08-11 02:31:16 +0200492 { /* End of list */ }
bellard85571bc2004-11-07 18:04:02 +0000493};
494
blueswir135f4b582008-10-06 18:08:30 +0000495static struct audio_pcm_ops sdl_pcm_ops = {
Juan Quintela1dd3e4d2009-08-11 02:31:15 +0200496 .init_out = sdl_init_out,
497 .fini_out = sdl_fini_out,
498 .run_out = sdl_run_out,
499 .write = sdl_write_out,
500 .ctl_out = sdl_ctl_out,
bellard1d14ffa2005-10-30 18:58:22 +0000501};
502
Gerd Hoffmannd3893a32018-03-06 08:40:47 +0100503static struct audio_driver sdl_audio_driver = {
Juan Quintelabee37f32009-08-11 02:31:14 +0200504 .name = "sdl",
505 .descr = "SDL http://www.libsdl.org",
506 .options = sdl_options,
507 .init = sdl_audio_init,
508 .fini = sdl_audio_fini,
509 .pcm_ops = &sdl_pcm_ops,
510 .can_be_default = 1,
511 .max_voices_out = 1,
512 .max_voices_in = 0,
513 .voice_size_out = sizeof (SDLVoiceOut),
514 .voice_size_in = 0
bellard85571bc2004-11-07 18:04:02 +0000515};
Gerd Hoffmannd3893a32018-03-06 08:40:47 +0100516
517static void register_audio_sdl(void)
518{
519 audio_driver_register(&sdl_audio_driver);
520}
521type_init(register_audio_sdl);