bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 1 | /* |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 2 | * QEMU SDL audio driver |
| 3 | * |
| 4 | * Copyright (c) 2004-2005 Vassili Karpov (malc) |
| 5 | * |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 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: |
| 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 Maydell | 6086a56 | 2016-01-18 17:33:52 +0000 | [diff] [blame] | 24 | #include "qemu/osdep.h" |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 25 | #include <SDL.h> |
| 26 | #include <SDL_thread.h> |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 27 | #include "qemu-common.h" |
| 28 | #include "audio.h" |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 29 | |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 30 | #ifndef _WIN32 |
| 31 | #ifdef __sun__ |
| 32 | #define _POSIX_PTHREAD_SEMANTICS 1 |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 33 | #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) |
blueswir1 | 9b4c14c | 2008-10-25 11:19:14 +0000 | [diff] [blame] | 34 | #include <pthread.h> |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 35 | #endif |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 36 | #endif |
| 37 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 38 | #define AUDIO_CAP "sdl" |
| 39 | #include "audio_int.h" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 40 | |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 41 | #define USE_SEMAPHORE (SDL_MAJOR_VERSION < 2) |
| 42 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 43 | typedef struct SDLVoiceOut { |
| 44 | HWVoiceOut hw; |
| 45 | int live; |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 46 | #if USE_SEMAPHORE |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 47 | int rpos; |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 48 | #endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 49 | int decr; |
| 50 | } SDLVoiceOut; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 51 | |
| 52 | static struct { |
| 53 | int nb_samples; |
| 54 | } conf = { |
Juan Quintela | 1a40d5e | 2009-08-11 02:31:17 +0200 | [diff] [blame] | 55 | .nb_samples = 1024 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
blueswir1 | b1d8e52 | 2008-10-26 13:43:07 +0000 | [diff] [blame] | 58 | static struct SDLAudioState { |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 59 | int exit; |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 60 | #if USE_SEMAPHORE |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 61 | SDL_mutex *mutex; |
| 62 | SDL_sem *sem; |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 63 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 64 | int initialized; |
Kővágó, Zoltán | 81ebb07 | 2015-06-03 23:03:55 +0200 | [diff] [blame] | 65 | bool driver_created; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 66 | } glob_sdl; |
| 67 | typedef struct SDLAudioState SDLAudioState; |
| 68 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 69 | static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 70 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 71 | 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 ()); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 78 | } |
| 79 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 80 | static int sdl_lock (SDLAudioState *s, const char *forfn) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 81 | { |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 82 | #if USE_SEMAPHORE |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 83 | if (SDL_LockMutex (s->mutex)) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 84 | sdl_logerr ("SDL_LockMutex for %s failed\n", forfn); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 85 | return -1; |
| 86 | } |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 87 | #else |
| 88 | SDL_LockAudio(); |
| 89 | #endif |
| 90 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 91 | return 0; |
| 92 | } |
| 93 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 94 | static int sdl_unlock (SDLAudioState *s, const char *forfn) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 95 | { |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 96 | #if USE_SEMAPHORE |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 97 | if (SDL_UnlockMutex (s->mutex)) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 98 | sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 99 | return -1; |
| 100 | } |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 101 | #else |
| 102 | SDL_UnlockAudio(); |
| 103 | #endif |
| 104 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 105 | return 0; |
| 106 | } |
| 107 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 108 | static int sdl_post (SDLAudioState *s, const char *forfn) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 109 | { |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 110 | #if USE_SEMAPHORE |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 111 | if (SDL_SemPost (s->sem)) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 112 | sdl_logerr ("SDL_SemPost for %s failed\n", forfn); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 113 | return -1; |
| 114 | } |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 115 | #endif |
| 116 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 117 | return 0; |
| 118 | } |
| 119 | |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 120 | #if USE_SEMAPHORE |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 121 | static int sdl_wait (SDLAudioState *s, const char *forfn) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 122 | { |
| 123 | if (SDL_SemWait (s->sem)) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 124 | sdl_logerr ("SDL_SemWait for %s failed\n", forfn); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 125 | return -1; |
| 126 | } |
| 127 | return 0; |
| 128 | } |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 129 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 130 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 131 | static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 132 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 133 | if (sdl_unlock (s, forfn)) { |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 134 | return -1; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 135 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 136 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 137 | return sdl_post (s, forfn); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Serge Ziryukin | 6c557ab | 2010-04-22 14:14:24 +0300 | [diff] [blame] | 140 | static int aud_to_sdlfmt (audfmt_e fmt) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 141 | { |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 142 | switch (fmt) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 143 | case AUD_FMT_S8: |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 144 | return AUDIO_S8; |
| 145 | |
| 146 | case AUD_FMT_U8: |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 147 | return AUDIO_U8; |
| 148 | |
| 149 | case AUD_FMT_S16: |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 150 | return AUDIO_S16LSB; |
| 151 | |
| 152 | case AUD_FMT_U16: |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 153 | return AUDIO_U16LSB; |
| 154 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 155 | default: |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 156 | dolog ("Internal logic error: Bad audio format %d\n", fmt); |
| 157 | #ifdef DEBUG_AUDIO |
| 158 | abort (); |
| 159 | #endif |
| 160 | return AUDIO_U8; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 161 | } |
| 162 | } |
| 163 | |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 164 | static int sdl_to_audfmt(int sdlfmt, audfmt_e *fmt, int *endianness) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 165 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 166 | switch (sdlfmt) { |
| 167 | case AUDIO_S8: |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 168 | *endianness = 0; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 169 | *fmt = AUD_FMT_S8; |
| 170 | break; |
| 171 | |
| 172 | case AUDIO_U8: |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 173 | *endianness = 0; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 174 | *fmt = AUD_FMT_U8; |
| 175 | break; |
| 176 | |
| 177 | case AUDIO_S16LSB: |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 178 | *endianness = 0; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 179 | *fmt = AUD_FMT_S16; |
| 180 | break; |
| 181 | |
| 182 | case AUDIO_U16LSB: |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 183 | *endianness = 0; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 184 | *fmt = AUD_FMT_U16; |
| 185 | break; |
| 186 | |
| 187 | case AUDIO_S16MSB: |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 188 | *endianness = 1; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 189 | *fmt = AUD_FMT_S16; |
| 190 | break; |
| 191 | |
| 192 | case AUDIO_U16MSB: |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 193 | *endianness = 1; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 194 | *fmt = AUD_FMT_U16; |
| 195 | break; |
| 196 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 197 | default: |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 198 | dolog ("Unrecognized SDL audio format %d\n", sdlfmt); |
| 199 | return -1; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 200 | } |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 201 | |
| 202 | return 0; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt) |
| 206 | { |
| 207 | int status; |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 208 | #ifndef _WIN32 |
malc | d087bb3 | 2010-08-06 13:09:41 +0400 | [diff] [blame] | 209 | int err; |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 210 | sigset_t new, old; |
| 211 | |
| 212 | /* Make sure potential threads created by SDL don't hog signals. */ |
malc | d087bb3 | 2010-08-06 13:09:41 +0400 | [diff] [blame] | 213 | err = sigfillset (&new); |
| 214 | if (err) { |
| 215 | dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno)); |
malc | 60592ed | 2010-08-07 20:03:05 +0400 | [diff] [blame] | 216 | return -1; |
malc | d087bb3 | 2010-08-06 13:09:41 +0400 | [diff] [blame] | 217 | } |
| 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 | } |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 223 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 224 | |
| 225 | status = SDL_OpenAudio (req, obt); |
| 226 | if (status) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 227 | sdl_logerr ("SDL_OpenAudio failed\n"); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 228 | } |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 229 | |
| 230 | #ifndef _WIN32 |
malc | d087bb3 | 2010-08-06 13:09:41 +0400 | [diff] [blame] | 231 | 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 | } |
ths | e784ba7 | 2007-07-11 23:23:15 +0000 | [diff] [blame] | 239 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 240 | return status; |
| 241 | } |
| 242 | |
| 243 | static void sdl_close (SDLAudioState *s) |
| 244 | { |
| 245 | if (s->initialized) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 246 | sdl_lock (s, "sdl_close"); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 247 | s->exit = 1; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 248 | sdl_unlock_and_post (s, "sdl_close"); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 249 | SDL_PauseAudio (1); |
| 250 | SDL_CloseAudio (); |
| 251 | s->initialized = 0; |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | static void sdl_callback (void *opaque, Uint8 *buf, int len) |
| 256 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 257 | SDLVoiceOut *sdl = opaque; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 258 | SDLAudioState *s = &glob_sdl; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 259 | HWVoiceOut *hw = &sdl->hw; |
| 260 | int samples = len >> hw->info.shift; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 261 | |
| 262 | if (s->exit) { |
| 263 | return; |
| 264 | } |
| 265 | |
| 266 | while (samples) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 267 | int to_mix, decr; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 268 | |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 269 | /* dolog ("in callback samples=%d\n", samples); */ |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 270 | #if USE_SEMAPHORE |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 271 | sdl_wait (s, "sdl_callback"); |
| 272 | if (s->exit) { |
| 273 | return; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 274 | } |
| 275 | |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 276 | if (sdl_lock (s, "sdl_callback")) { |
| 277 | return; |
| 278 | } |
malc | 4839abe | 2009-09-30 16:25:55 +0400 | [diff] [blame] | 279 | |
Alistair Francis | 470bcab | 2018-02-03 09:43:02 +0100 | [diff] [blame] | 280 | if (audio_bug(__func__, sdl->live < 0 || sdl->live > hw->samples)) { |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 281 | 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 Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 289 | #else |
| 290 | if (s->exit || !sdl->live) { |
| 291 | break; |
| 292 | } |
| 293 | #endif |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 294 | |
| 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 Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 304 | #if USE_SEMAPHORE |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 305 | sdl->rpos = (sdl->rpos + chunk) % hw->samples; |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 306 | #else |
| 307 | hw->rpos = (hw->rpos + chunk) % hw->samples; |
| 308 | #endif |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 309 | to_mix -= chunk; |
| 310 | buf += chunk << hw->info.shift; |
| 311 | } |
| 312 | samples -= decr; |
| 313 | sdl->live -= decr; |
| 314 | sdl->decr += decr; |
| 315 | |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 316 | #if USE_SEMAPHORE |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 317 | again: |
| 318 | if (sdl_unlock (s, "sdl_callback")) { |
| 319 | return; |
| 320 | } |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 321 | #endif |
malc | 4839abe | 2009-09-30 16:25:55 +0400 | [diff] [blame] | 322 | } |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 323 | /* dolog ("done len=%d\n", len); */ |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 324 | |
| 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 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 331 | } |
| 332 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 333 | static int sdl_write_out (SWVoiceOut *sw, void *buf, int len) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 334 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 335 | return audio_pcm_sw_write (sw, buf, len); |
| 336 | } |
| 337 | |
malc | bdff253 | 2009-09-18 11:37:39 +0400 | [diff] [blame] | 338 | static int sdl_run_out (HWVoiceOut *hw, int live) |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 339 | { |
malc | bdff253 | 2009-09-18 11:37:39 +0400 | [diff] [blame] | 340 | int decr; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 341 | SDLVoiceOut *sdl = (SDLVoiceOut *) hw; |
| 342 | SDLAudioState *s = &glob_sdl; |
| 343 | |
malc | 3fd7f63 | 2009-09-18 11:19:00 +0400 | [diff] [blame] | 344 | if (sdl_lock (s, "sdl_run_out")) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 348 | 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 Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 358 | #if USE_SEMAPHORE |
malc | ff54149 | 2010-01-17 00:25:29 +0300 | [diff] [blame] | 359 | sdl->live = live - decr; |
| 360 | hw->rpos = sdl->rpos; |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 361 | #else |
| 362 | sdl->live = live; |
| 363 | #endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 364 | |
| 365 | if (sdl->live > 0) { |
malc | 3fd7f63 | 2009-09-18 11:19:00 +0400 | [diff] [blame] | 366 | sdl_unlock_and_post (s, "sdl_run_out"); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 367 | } |
| 368 | else { |
malc | 3fd7f63 | 2009-09-18 11:19:00 +0400 | [diff] [blame] | 369 | sdl_unlock (s, "sdl_run_out"); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 370 | } |
| 371 | return decr; |
| 372 | } |
| 373 | |
| 374 | static void sdl_fini_out (HWVoiceOut *hw) |
| 375 | { |
| 376 | (void) hw; |
| 377 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 378 | sdl_close (&glob_sdl); |
| 379 | } |
| 380 | |
Kővágó, Zoltán | 5706db1 | 2015-06-03 23:03:47 +0200 | [diff] [blame] | 381 | static int sdl_init_out(HWVoiceOut *hw, struct audsettings *as, |
| 382 | void *drv_opaque) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 383 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 384 | SDLVoiceOut *sdl = (SDLVoiceOut *) hw; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 385 | SDLAudioState *s = &glob_sdl; |
| 386 | SDL_AudioSpec req, obt; |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 387 | int endianness; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 388 | int err; |
| 389 | audfmt_e effective_fmt; |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 390 | struct audsettings obt_as; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 391 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 392 | req.freq = as->freq; |
Serge Ziryukin | 6c557ab | 2010-04-22 14:14:24 +0300 | [diff] [blame] | 393 | req.format = aud_to_sdlfmt (as->fmt); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 394 | req.channels = as->nchannels; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 395 | req.samples = conf.nb_samples; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 396 | req.callback = sdl_callback; |
| 397 | req.userdata = sdl; |
| 398 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 399 | if (sdl_open (&req, &obt)) { |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 400 | return -1; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 401 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 402 | |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 403 | err = sdl_to_audfmt(obt.format, &effective_fmt, &endianness); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 404 | if (err) { |
| 405 | sdl_close (s); |
| 406 | return -1; |
| 407 | } |
| 408 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 409 | obt_as.freq = obt.freq; |
| 410 | obt_as.nchannels = obt.channels; |
| 411 | obt_as.fmt = effective_fmt; |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 412 | obt_as.endianness = endianness; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 413 | |
bellard | d929eba | 2006-07-04 21:47:22 +0000 | [diff] [blame] | 414 | audio_pcm_init_info (&hw->info, &obt_as); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 415 | hw->samples = obt.samples; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 416 | |
| 417 | s->initialized = 1; |
| 418 | s->exit = 0; |
| 419 | SDL_PauseAudio (0); |
| 420 | return 0; |
| 421 | } |
| 422 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 423 | static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 424 | { |
| 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 | |
| 439 | static void *sdl_audio_init (void) |
| 440 | { |
| 441 | SDLAudioState *s = &glob_sdl; |
Kővágó, Zoltán | 81ebb07 | 2015-06-03 23:03:55 +0200 | [diff] [blame] | 442 | if (s->driver_created) { |
| 443 | sdl_logerr("Can't create multiple sdl backends\n"); |
| 444 | return NULL; |
| 445 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 446 | |
| 447 | if (SDL_InitSubSystem (SDL_INIT_AUDIO)) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 448 | sdl_logerr ("SDL failed to initialize audio subsystem\n"); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 449 | return NULL; |
| 450 | } |
| 451 | |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 452 | #if USE_SEMAPHORE |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 453 | s->mutex = SDL_CreateMutex (); |
| 454 | if (!s->mutex) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 455 | sdl_logerr ("Failed to create SDL mutex\n"); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 456 | SDL_QuitSubSystem (SDL_INIT_AUDIO); |
| 457 | return NULL; |
| 458 | } |
| 459 | |
| 460 | s->sem = SDL_CreateSemaphore (0); |
| 461 | if (!s->sem) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 462 | sdl_logerr ("Failed to create SDL semaphore\n"); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 463 | SDL_DestroyMutex (s->mutex); |
| 464 | SDL_QuitSubSystem (SDL_INIT_AUDIO); |
| 465 | return NULL; |
| 466 | } |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 467 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 468 | |
Kővágó, Zoltán | 81ebb07 | 2015-06-03 23:03:55 +0200 | [diff] [blame] | 469 | s->driver_created = true; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 470 | return s; |
| 471 | } |
| 472 | |
| 473 | static void sdl_audio_fini (void *opaque) |
| 474 | { |
| 475 | SDLAudioState *s = opaque; |
| 476 | sdl_close (s); |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 477 | #if USE_SEMAPHORE |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 478 | SDL_DestroySemaphore (s->sem); |
| 479 | SDL_DestroyMutex (s->mutex); |
Thomas Huth | bcf1977 | 2017-01-31 09:46:38 +0100 | [diff] [blame] | 480 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 481 | SDL_QuitSubSystem (SDL_INIT_AUDIO); |
Kővágó, Zoltán | 81ebb07 | 2015-06-03 23:03:55 +0200 | [diff] [blame] | 482 | s->driver_created = false; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 483 | } |
| 484 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 485 | static struct audio_option sdl_options[] = { |
malc | 98f9f48 | 2009-08-11 20:48:02 +0400 | [diff] [blame] | 486 | { |
| 487 | .name = "SAMPLES", |
| 488 | .tag = AUD_OPT_INT, |
| 489 | .valp = &conf.nb_samples, |
| 490 | .descr = "Size of SDL buffer in samples" |
| 491 | }, |
Juan Quintela | 2700efa | 2009-08-11 02:31:16 +0200 | [diff] [blame] | 492 | { /* End of list */ } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 493 | }; |
| 494 | |
blueswir1 | 35f4b58 | 2008-10-06 18:08:30 +0000 | [diff] [blame] | 495 | static struct audio_pcm_ops sdl_pcm_ops = { |
Juan Quintela | 1dd3e4d | 2009-08-11 02:31:15 +0200 | [diff] [blame] | 496 | .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, |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 501 | }; |
| 502 | |
Gerd Hoffmann | d3893a3 | 2018-03-06 08:40:47 +0100 | [diff] [blame] | 503 | static struct audio_driver sdl_audio_driver = { |
Juan Quintela | bee37f3 | 2009-08-11 02:31:14 +0200 | [diff] [blame] | 504 | .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 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 515 | }; |
Gerd Hoffmann | d3893a3 | 2018-03-06 08:40:47 +0100 | [diff] [blame] | 516 | |
| 517 | static void register_audio_sdl(void) |
| 518 | { |
| 519 | audio_driver_register(&sdl_audio_driver); |
| 520 | } |
| 521 | type_init(register_audio_sdl); |