| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |  * QEMU SDL audio driver | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2004-2005 Vassili Karpov (malc) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-01-18 17:33:52 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2004-11-14 18:59:52 +00:00
										 |  |  | #include <SDL.h>
 | 
					
						
							|  |  |  | #include <SDL_thread.h>
 | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | #include "qemu-common.h"
 | 
					
						
							|  |  |  | #include "audio.h"
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  | #ifndef _WIN32
 | 
					
						
							|  |  |  | #ifdef __sun__
 | 
					
						
							|  |  |  | #define _POSIX_PTHREAD_SEMANTICS 1
 | 
					
						
							| 
									
										
										
										
											2009-03-07 20:06:23 +00:00
										 |  |  | #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
 | 
					
						
							| 
									
										
										
										
											2008-10-25 11:19:14 +00:00
										 |  |  | #include <pthread.h>
 | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #define AUDIO_CAP "sdl"
 | 
					
						
							|  |  |  | #include "audio_int.h"
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #define USE_SEMAPHORE (SDL_MAJOR_VERSION < 2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | typedef struct SDLVoiceOut { | 
					
						
							|  |  |  |     HWVoiceOut hw; | 
					
						
							|  |  |  |     int live; | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |     int rpos; | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     int decr; | 
					
						
							|  |  |  | } SDLVoiceOut; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct { | 
					
						
							|  |  |  |     int nb_samples; | 
					
						
							|  |  |  | } conf = { | 
					
						
							| 
									
										
										
										
											2009-08-11 02:31:17 +02:00
										 |  |  |     .nb_samples = 1024 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-26 13:43:07 +00:00
										 |  |  | static struct SDLAudioState { | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     int exit; | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     SDL_mutex *mutex; | 
					
						
							|  |  |  |     SDL_sem *sem; | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     int initialized; | 
					
						
							| 
									
										
										
										
											2015-06-03 23:03:55 +02:00
										 |  |  |     bool driver_created; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } glob_sdl; | 
					
						
							|  |  |  | typedef struct SDLAudioState SDLAudioState; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     va_list ap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     va_start (ap, fmt); | 
					
						
							|  |  |  |     AUD_vlog (AUDIO_CAP, fmt, ap); | 
					
						
							|  |  |  |     va_end (ap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ()); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_lock (SDLAudioState *s, const char *forfn) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     if (SDL_LockMutex (s->mutex)) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("SDL_LockMutex for %s failed\n", forfn); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     SDL_LockAudio(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_unlock (SDLAudioState *s, const char *forfn) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     if (SDL_UnlockMutex (s->mutex)) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     SDL_UnlockAudio(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_post (SDLAudioState *s, const char *forfn) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     if (SDL_SemPost (s->sem)) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("SDL_SemPost for %s failed\n", forfn); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_wait (SDLAudioState *s, const char *forfn) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (SDL_SemWait (s->sem)) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("SDL_SemWait for %s failed\n", forfn); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     if (sdl_unlock (s, forfn)) { | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     return sdl_post (s, forfn); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 14:14:24 +03:00
										 |  |  | static int aud_to_sdlfmt (audfmt_e fmt) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     switch (fmt) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     case AUD_FMT_S8: | 
					
						
							|  |  |  |         return AUDIO_S8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUD_FMT_U8: | 
					
						
							|  |  |  |         return AUDIO_U8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUD_FMT_S16: | 
					
						
							|  |  |  |         return AUDIO_S16LSB; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUD_FMT_U16: | 
					
						
							|  |  |  |         return AUDIO_U16LSB; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         dolog ("Internal logic error: Bad audio format %d\n", fmt); | 
					
						
							|  |  |  | #ifdef DEBUG_AUDIO
 | 
					
						
							|  |  |  |         abort (); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         return AUDIO_U8; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  | static int sdl_to_audfmt(int sdlfmt, audfmt_e *fmt, int *endianness) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     switch (sdlfmt) { | 
					
						
							|  |  |  |     case AUDIO_S8: | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |         *endianness = 0; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         *fmt = AUD_FMT_S8; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUDIO_U8: | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |         *endianness = 0; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         *fmt = AUD_FMT_U8; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUDIO_S16LSB: | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |         *endianness = 0; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         *fmt = AUD_FMT_S16; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUDIO_U16LSB: | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |         *endianness = 0; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         *fmt = AUD_FMT_U16; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUDIO_S16MSB: | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |         *endianness = 1; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         *fmt = AUD_FMT_S16; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case AUDIO_U16MSB: | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |         *endianness = 1; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         *fmt = AUD_FMT_U16; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         dolog ("Unrecognized SDL audio format %d\n", sdlfmt); | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int status; | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  | #ifndef _WIN32
 | 
					
						
							| 
									
										
										
										
											2010-08-06 13:09:41 +04:00
										 |  |  |     int err; | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  |     sigset_t new, old; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Make sure potential threads created by SDL don't hog signals.  */ | 
					
						
							| 
									
										
										
										
											2010-08-06 13:09:41 +04:00
										 |  |  |     err = sigfillset (&new); | 
					
						
							|  |  |  |     if (err) { | 
					
						
							|  |  |  |         dolog ("sdl_open: sigfillset failed: %s\n", strerror (errno)); | 
					
						
							| 
									
										
										
										
											2010-08-07 20:03:05 +04:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2010-08-06 13:09:41 +04:00
										 |  |  |     } | 
					
						
							|  |  |  |     err = pthread_sigmask (SIG_BLOCK, &new, &old); | 
					
						
							|  |  |  |     if (err) { | 
					
						
							|  |  |  |         dolog ("sdl_open: pthread_sigmask failed: %s\n", strerror (err)); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     status = SDL_OpenAudio (req, obt); | 
					
						
							|  |  |  |     if (status) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("SDL_OpenAudio failed\n"); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef _WIN32
 | 
					
						
							| 
									
										
										
										
											2010-08-06 13:09:41 +04:00
										 |  |  |     err = pthread_sigmask (SIG_SETMASK, &old, NULL); | 
					
						
							|  |  |  |     if (err) { | 
					
						
							|  |  |  |         dolog ("sdl_open: pthread_sigmask (restore) failed: %s\n", | 
					
						
							|  |  |  |                strerror (errno)); | 
					
						
							|  |  |  |         /* We have failed to restore original signal mask, all bets are off,
 | 
					
						
							|  |  |  |            so exit the process */ | 
					
						
							|  |  |  |         exit (EXIT_FAILURE); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-07-11 23:23:15 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdl_close (SDLAudioState *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (s->initialized) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_lock (s, "sdl_close"); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         s->exit = 1; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_unlock_and_post (s, "sdl_close"); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         SDL_PauseAudio (1); | 
					
						
							|  |  |  |         SDL_CloseAudio (); | 
					
						
							|  |  |  |         s->initialized = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdl_callback (void *opaque, Uint8 *buf, int len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     SDLVoiceOut *sdl = opaque; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     SDLAudioState *s = &glob_sdl; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     HWVoiceOut *hw = &sdl->hw; | 
					
						
							|  |  |  |     int samples = len >> hw->info.shift; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (s->exit) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (samples) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         int to_mix, decr; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |         /* dolog ("in callback samples=%d\n", samples); */ | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |         sdl_wait (s, "sdl_callback"); | 
					
						
							|  |  |  |         if (s->exit) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (sdl_lock (s, "sdl_callback")) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (audio_bug (AUDIO_FUNC, sdl->live < 0 || sdl->live > hw->samples)) { | 
					
						
							|  |  |  |             dolog ("sdl->live=%d hw->samples=%d\n", | 
					
						
							|  |  |  |                    sdl->live, hw->samples); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!sdl->live) { | 
					
						
							|  |  |  |             goto again; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |         if (s->exit || !sdl->live) { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |         /* dolog ("in callback live=%d\n", live); */ | 
					
						
							|  |  |  |         to_mix = audio_MIN (samples, sdl->live); | 
					
						
							|  |  |  |         decr = to_mix; | 
					
						
							|  |  |  |         while (to_mix) { | 
					
						
							|  |  |  |             int chunk = audio_MIN (to_mix, hw->samples - hw->rpos); | 
					
						
							|  |  |  |             struct st_sample *src = hw->mix_buf + hw->rpos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */ | 
					
						
							|  |  |  |             hw->clip (buf, src, chunk); | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |             sdl->rpos = (sdl->rpos + chunk) % hw->samples; | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |             hw->rpos = (hw->rpos + chunk) % hw->samples; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |             to_mix -= chunk; | 
					
						
							|  |  |  |             buf += chunk << hw->info.shift; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         samples -= decr; | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |         sdl->live -= decr; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl->decr += decr; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |     again: | 
					
						
							|  |  |  |         if (sdl_unlock (s, "sdl_callback")) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |     /* dolog ("done len=%d\n", len); */ | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if (SDL_MAJOR_VERSION >= 2)
 | 
					
						
							|  |  |  |     /* SDL2 does not clear the remaining buffer for us, so do it on our own */ | 
					
						
							|  |  |  |     if (samples) { | 
					
						
							|  |  |  |         memset(buf, 0, samples << hw->info.shift); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_write_out (SWVoiceOut *sw, void *buf, int len) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     return audio_pcm_sw_write (sw, buf, len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-18 11:37:39 +04:00
										 |  |  | static int sdl_run_out (HWVoiceOut *hw, int live) | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-18 11:37:39 +04:00
										 |  |  |     int decr; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     SDLVoiceOut *sdl = (SDLVoiceOut *) hw; | 
					
						
							|  |  |  |     SDLAudioState *s = &glob_sdl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-18 11:19:00 +04:00
										 |  |  |     if (sdl_lock (s, "sdl_run_out")) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |     if (sdl->decr > live) { | 
					
						
							|  |  |  |         ldebug ("sdl->decr %d live %d sdl->live %d\n", | 
					
						
							|  |  |  |                 sdl->decr, | 
					
						
							|  |  |  |                 live, | 
					
						
							|  |  |  |                 sdl->live); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     decr = audio_MIN (sdl->decr, live); | 
					
						
							|  |  |  |     sdl->decr -= decr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2010-01-17 00:25:29 +03:00
										 |  |  |     sdl->live = live - decr; | 
					
						
							|  |  |  |     hw->rpos = sdl->rpos; | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     sdl->live = live; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (sdl->live > 0) { | 
					
						
							| 
									
										
										
										
											2009-09-18 11:19:00 +04:00
										 |  |  |         sdl_unlock_and_post (s, "sdl_run_out"); | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2009-09-18 11:19:00 +04:00
										 |  |  |         sdl_unlock (s, "sdl_run_out"); | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return decr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdl_fini_out (HWVoiceOut *hw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     (void) hw; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     sdl_close (&glob_sdl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 23:03:47 +02:00
										 |  |  | static int sdl_init_out(HWVoiceOut *hw, struct audsettings *as, | 
					
						
							|  |  |  |                         void *drv_opaque) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     SDLVoiceOut *sdl = (SDLVoiceOut *) hw; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     SDLAudioState *s = &glob_sdl; | 
					
						
							|  |  |  |     SDL_AudioSpec req, obt; | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |     int endianness; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     int err; | 
					
						
							|  |  |  |     audfmt_e effective_fmt; | 
					
						
							| 
									
										
										
										
											2008-12-03 22:48:44 +00:00
										 |  |  |     struct audsettings obt_as; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     req.freq = as->freq; | 
					
						
							| 
									
										
										
										
											2010-04-22 14:14:24 +03:00
										 |  |  |     req.format = aud_to_sdlfmt (as->fmt); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     req.channels = as->nchannels; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     req.samples = conf.nb_samples; | 
					
						
							|  |  |  |     req.callback = sdl_callback; | 
					
						
							|  |  |  |     req.userdata = sdl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     if (sdl_open (&req, &obt)) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |     err = sdl_to_audfmt(obt.format, &effective_fmt, &endianness); | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     if (err) { | 
					
						
							|  |  |  |         sdl_close (s); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     obt_as.freq = obt.freq; | 
					
						
							|  |  |  |     obt_as.nchannels = obt.channels; | 
					
						
							|  |  |  |     obt_as.fmt = effective_fmt; | 
					
						
							| 
									
										
										
										
											2011-03-13 15:44:02 +01:00
										 |  |  |     obt_as.endianness = endianness; | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-04 21:47:22 +00:00
										 |  |  |     audio_pcm_init_info (&hw->info, &obt_as); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     hw->samples = obt.samples; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->initialized = 1; | 
					
						
							|  |  |  |     s->exit = 0; | 
					
						
							|  |  |  |     SDL_PauseAudio (0); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     (void) hw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case VOICE_ENABLE: | 
					
						
							|  |  |  |         SDL_PauseAudio (0); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case VOICE_DISABLE: | 
					
						
							|  |  |  |         SDL_PauseAudio (1); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void *sdl_audio_init (void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SDLAudioState *s = &glob_sdl; | 
					
						
							| 
									
										
										
										
											2015-06-03 23:03:55 +02:00
										 |  |  |     if (s->driver_created) { | 
					
						
							|  |  |  |         sdl_logerr("Can't create multiple sdl backends\n"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (SDL_InitSubSystem (SDL_INIT_AUDIO)) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("SDL failed to initialize audio subsystem\n"); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     s->mutex = SDL_CreateMutex (); | 
					
						
							|  |  |  |     if (!s->mutex) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("Failed to create SDL mutex\n"); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         SDL_QuitSubSystem (SDL_INIT_AUDIO); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->sem = SDL_CreateSemaphore (0); | 
					
						
							|  |  |  |     if (!s->sem) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         sdl_logerr ("Failed to create SDL semaphore\n"); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         SDL_DestroyMutex (s->mutex); | 
					
						
							|  |  |  |         SDL_QuitSubSystem (SDL_INIT_AUDIO); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 23:03:55 +02:00
										 |  |  |     s->driver_created = true; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     return s; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdl_audio_fini (void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SDLAudioState *s = opaque; | 
					
						
							|  |  |  |     sdl_close (s); | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #if USE_SEMAPHORE
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     SDL_DestroySemaphore (s->sem); | 
					
						
							|  |  |  |     SDL_DestroyMutex (s->mutex); | 
					
						
							| 
									
										
										
										
											2017-01-31 09:46:38 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     SDL_QuitSubSystem (SDL_INIT_AUDIO); | 
					
						
							| 
									
										
										
										
											2015-06-03 23:03:55 +02:00
										 |  |  |     s->driver_created = false; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static struct audio_option sdl_options[] = { | 
					
						
							| 
									
										
										
										
											2009-08-11 20:48:02 +04:00
										 |  |  |     { | 
					
						
							|  |  |  |         .name  = "SAMPLES", | 
					
						
							|  |  |  |         .tag   = AUD_OPT_INT, | 
					
						
							|  |  |  |         .valp  = &conf.nb_samples, | 
					
						
							|  |  |  |         .descr = "Size of SDL buffer in samples" | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2009-08-11 02:31:16 +02:00
										 |  |  |     { /* End of list */ } | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-06 18:08:30 +00:00
										 |  |  | static struct audio_pcm_ops sdl_pcm_ops = { | 
					
						
							| 
									
										
										
										
											2009-08-11 02:31:15 +02:00
										 |  |  |     .init_out = sdl_init_out, | 
					
						
							|  |  |  |     .fini_out = sdl_fini_out, | 
					
						
							|  |  |  |     .run_out  = sdl_run_out, | 
					
						
							|  |  |  |     .write    = sdl_write_out, | 
					
						
							|  |  |  |     .ctl_out  = sdl_ctl_out, | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | struct audio_driver sdl_audio_driver = { | 
					
						
							| 
									
										
										
										
											2009-08-11 02:31:14 +02:00
										 |  |  |     .name           = "sdl", | 
					
						
							|  |  |  |     .descr          = "SDL http://www.libsdl.org", | 
					
						
							|  |  |  |     .options        = sdl_options, | 
					
						
							|  |  |  |     .init           = sdl_audio_init, | 
					
						
							|  |  |  |     .fini           = sdl_audio_fini, | 
					
						
							|  |  |  |     .pcm_ops        = &sdl_pcm_ops, | 
					
						
							|  |  |  |     .can_be_default = 1, | 
					
						
							|  |  |  |     .max_voices_out = 1, | 
					
						
							|  |  |  |     .max_voices_in  = 0, | 
					
						
							|  |  |  |     .voice_size_out = sizeof (SDLVoiceOut), | 
					
						
							|  |  |  |     .voice_size_in  = 0 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | }; |