]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_sdl.c
Fix setinfo.
[xonotic/darkplaces.git] / snd_sdl.c
index cfeeb1b49905c5259e990d14e40d1662e81d22fa..583ea1f8b3b00d767f61abab2a2f836bf8f86bf4 100644 (file)
--- a/snd_sdl.c
+++ b/snd_sdl.c
@@ -16,72 +16,90 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
+#include <math.h>
+#include <SDL.h>
+
 #include "quakedef.h"
+
 #include "snd_main.h"
-#include <SDL.h>
 
-/*
-Info:
-SDL samples are really frames (full set of samples for all speakers)
-*/
 
-#define AUDIO_SDL_SAMPLEFRAMES         4096
-#define AUDIO_LOCALFACTOR              4
+static unsigned int sdlaudiotime = 0;
 
-typedef struct AudioState_s
+
+// Note: SDL calls SDL_LockAudio() right before this function, so no need to lock the audio data here
+static void Buffer_Callback (void *userdata, Uint8 *stream, int len)
 {
-       int             width;
-    int                size;
-       int             pos;
-       void    *buffer;
-} AudioState;
+       unsigned int factor, RequestedFrames, MaxFrames, FrameCount;
+       unsigned int StartOffset, EndOffset;
 
+       factor = snd_renderbuffer->format.channels * snd_renderbuffer->format.width;
+       if ((unsigned int)len % factor != 0)
+               Sys_Error("SDL sound: invalid buffer length passed to Buffer_Callback (%d bytes)\n", len);
 
-static AudioState       as;
+       RequestedFrames = (unsigned int)len / factor;
 
-static void Buffer_Callback(void *userdata, Uint8 *stream, int len);
+       if (SndSys_LockRenderBuffer())
+       {
+               if (snd_usethreadedmixing)
+               {
+                       S_MixToBuffer(stream, RequestedFrames);
+                       if (snd_blocked)
+                               memset(stream, snd_renderbuffer->format.width == 1 ? 0x80 : 0, len);
+                       SndSys_UnlockRenderBuffer();
+                       return;
+               }
 
-/*
-==================
-S_BlockSound
-==================
-*/
-void S_BlockSound( void )
-{
-       snd_blocked++;
+               // Transfert up to a chunk of samples from snd_renderbuffer to stream
+               MaxFrames = snd_renderbuffer->endframe - snd_renderbuffer->startframe;
+               if (MaxFrames > RequestedFrames)
+                       FrameCount = RequestedFrames;
+               else
+                       FrameCount = MaxFrames;
+               StartOffset = snd_renderbuffer->startframe % snd_renderbuffer->maxframes;
+               EndOffset = (snd_renderbuffer->startframe + FrameCount) % snd_renderbuffer->maxframes;
+               if (StartOffset > EndOffset)  // if the buffer wraps
+               {
+                       unsigned int PartialLength1, PartialLength2;
 
-       if( snd_blocked == 1 )
-               SDL_PauseAudio( true );
-}
+                       PartialLength1 = (snd_renderbuffer->maxframes - StartOffset) * factor;
+                       memcpy(stream, &snd_renderbuffer->ring[StartOffset * factor], PartialLength1);
 
+                       PartialLength2 = FrameCount * factor - PartialLength1;
+                       memcpy(&stream[PartialLength1], &snd_renderbuffer->ring[0], PartialLength2);
+               }
+               else
+                       memcpy(stream, &snd_renderbuffer->ring[StartOffset * factor], FrameCount * factor);
 
-/*
-==================
-S_UnblockSound
-==================
-*/
-void S_UnblockSound( void )
-{
-       snd_blocked--;
-       if( snd_blocked == 0 )
-               SDL_PauseAudio( false );
+               snd_renderbuffer->startframe += FrameCount;
+
+               if (FrameCount < RequestedFrames && developer_insane.integer && vid_activewindow)
+                       Con_DPrintf("SDL sound: %u sample frames missing\n", RequestedFrames - FrameCount);
+
+               sdlaudiotime += RequestedFrames;
+
+               SndSys_UnlockRenderBuffer();
+       }
 }
 
 
 /*
-==================
-SNDDMA_Init
+====================
+SndSys_Init
 
-Try to find a sound device to mix for.
-Returns false if nothing is found.
-==================
+Create "snd_renderbuffer" with the proper sound format if the call is successful
+May return a suggested format if the requested format isn't available
+====================
 */
-
-qboolean SNDDMA_Init(void)
+qboolean SndSys_Init (const snd_format_t* requested, snd_format_t* suggested)
 {
+       unsigned int buffersize;
        SDL_AudioSpec wantspec;
-       int i;
-       int channels;
+       SDL_AudioSpec obtainspec;
+
+       snd_threaded = false;
+
+       Con_DPrint ("SndSys_Init: using the SDL module\n");
 
        // Init the SDL Audio subsystem
        if( SDL_InitSubSystem( SDL_INIT_AUDIO ) ) {
@@ -89,138 +107,148 @@ qboolean SNDDMA_Init(void)
                return false;
        }
 
-       for (channels = 8;channels >= 1;channels--)
+       buffersize = (unsigned int)ceil((double)requested->speed / 25.0); // 2048 bytes on 24kHz to 48kHz
+
+       // Init the SDL Audio subsystem
+       wantspec.callback = Buffer_Callback;
+       wantspec.userdata = NULL;
+       wantspec.freq = requested->speed;
+       wantspec.format = ((requested->width == 1) ? AUDIO_U8 : AUDIO_S16SYS);
+       wantspec.channels = requested->channels;
+       wantspec.samples = CeilPowerOf2(buffersize);  // needs to be a power of 2 on some platforms.
+
+       Con_Printf("Wanted audio Specification:\n"
+                               "\tChannels  : %i\n"
+                               "\tFormat    : 0x%X\n"
+                               "\tFrequency : %i\n"
+                               "\tSamples   : %i\n",
+                               wantspec.channels, wantspec.format, wantspec.freq, wantspec.samples);
+
+       if( SDL_OpenAudio( &wantspec, &obtainspec ) )
+       {
+               Con_Printf( "Failed to open the audio device! (%s)\n", SDL_GetError() );
+               return false;
+       }
+
+       Con_Printf("Obtained audio specification:\n"
+                               "\tChannels  : %i\n"
+                               "\tFormat    : 0x%X\n"
+                               "\tFrequency : %i\n"
+                               "\tSamples   : %i\n",
+                               obtainspec.channels, obtainspec.format, obtainspec.freq, obtainspec.samples);
+
+       // If we haven't obtained what we wanted
+       if (wantspec.freq != obtainspec.freq ||
+               wantspec.format != obtainspec.format ||
+               wantspec.channels != obtainspec.channels)
        {
-               if ((channels & 1) && channels != 1)
-                       continue;
-// COMMANDLINEOPTION: SDL Sound: -sndmono sets sound output to mono
-               if ((i=COM_CheckParm("-sndmono")) != 0)
-                       if (channels != 1)
-                               continue;
-// COMMANDLINEOPTION: SDL Sound: -sndstereo sets sound output to stereo
-               if ((i=COM_CheckParm("-sndstereo")) != 0)
-                       if (channels != 2)
-                               continue;
-// COMMANDLINEOPTION: SDL Sound: -sndquad sets sound output to 4 channel surround
-               if ((i=COM_CheckParm("-sndquad")) != 0)
-                       if (channels != 4)
-                               continue;
-               // Init the SDL Audio subsystem
-               wantspec.callback = Buffer_Callback;
-               wantspec.userdata = NULL;
-               wantspec.freq = 44100;
-               // COMMANDLINEOPTION: SDL Sound: -sndspeed <hz> chooses sound output rate (try values such as 44100, 48000, 22050, 11025 (quake), 24000, 32000, 96000, 192000, etc)
-               i = COM_CheckParm( "-sndspeed" );
-               if( i && i != ( com_argc - 1 ) )
-                       wantspec.freq = atoi( com_argv[ i+1 ] );
-               wantspec.format = AUDIO_S16SYS;
-               wantspec.channels = channels;
-               wantspec.samples = AUDIO_SDL_SAMPLEFRAMES;
-
-               if( SDL_OpenAudio( &wantspec, NULL ) )
+               SDL_CloseAudio();
+
+               // Pass the obtained format as a suggested format
+               if (suggested != NULL)
                {
-                       Con_Printf("%s\n", SDL_GetError());
-                       continue;
+                       suggested->speed = obtainspec.freq;
+                       // FIXME: check the format more carefully. There are plenty of unsupported cases
+                       suggested->width = ((obtainspec.format == AUDIO_U8) ? 1 : 2);
+                       suggested->channels = obtainspec.channels;
                }
 
-               // Init the shm structure
-               memset( (void*) shm, 0, sizeof(*shm) );
-               shm->format.channels = wantspec.channels;
-               shm->format.width = 2;
-               shm->format.speed = wantspec.freq;
-
-               shm->samplepos = 0;
-               shm->sampleframes = wantspec.samples * AUDIO_LOCALFACTOR;
-               shm->samples = shm->sampleframes * shm->format.channels;
-               shm->bufferlength = shm->samples * shm->format.width;
-               shm->buffer = (unsigned char *)Mem_Alloc( snd_mempool, shm->bufferlength );
-
-               // Init the as structure
-               as.buffer = shm->buffer;
-               as.width = shm->format.width;
-               as.pos = 0;
-               as.size = shm->bufferlength;
-               break;
-       }
-       if (channels < 1)
-       {
-               Con_Print( "Failed to open the audio device!\n" );
-               Con_DPrintf(
-                       "Audio Specification:\n"
-                       "\tChannels  : %i\n"
-                       "\tFormat    : %x\n"
-                       "\tFrequency : %i\n"
-                       "\tSamples   : %i\n",
-                       wantspec.channels, wantspec.format, wantspec.freq, wantspec.samples );
                return false;
        }
 
+       snd_threaded = true;
+
+       snd_renderbuffer = Snd_CreateRingBuffer(requested, 0, NULL);
+       if (snd_channellayout.integer == SND_CHANNELLAYOUT_AUTO)
+               Cvar_SetValueQuick (&snd_channellayout, SND_CHANNELLAYOUT_STANDARD);
+
+       sdlaudiotime = 0;
        SDL_PauseAudio( false );
 
        return true;
 }
 
+
 /*
-==============
-SNDDMA_GetDMAPos
+====================
+SndSys_Shutdown
 
-return the current sample position (in mono samples read)
-inside the recirculating dma buffer, so the mixing code will know
-how many sample are required to fill it up.
-===============
+Stop the sound card, delete "snd_renderbuffer" and free its other resources
+====================
 */
-int SNDDMA_GetDMAPos(void)
+void SndSys_Shutdown(void)
 {
-       shm->samplepos = (as.pos / as.width) % shm->samples;
-       return shm->samplepos;
+       SDL_CloseAudio();
+
+       if (snd_renderbuffer != NULL)
+       {
+               Mem_Free(snd_renderbuffer->ring);
+               Mem_Free(snd_renderbuffer);
+               snd_renderbuffer = NULL;
+       }
 }
 
+
 /*
-==============
-SNDDMA_Submit
+====================
+SndSys_Submit
 
-Send sound to device if buffer isn't really the dma buffer
-===============
+Submit the contents of "snd_renderbuffer" to the sound card
+====================
 */
-void SNDDMA_Submit(void)
+void SndSys_Submit (void)
 {
-
+       // Nothing to do here (this sound module is callback-based)
 }
 
+
 /*
-==============
-SNDDMA_Shutdown
+====================
+SndSys_GetSoundTime
 
-Reset the sound device for exiting
-===============
+Returns the number of sample frames consumed since the sound started
+====================
 */
-void SNDDMA_Shutdown(void)
+unsigned int SndSys_GetSoundTime (void)
 {
-       SDL_CloseAudio();
-       Mem_Free( as.buffer );
+       return sdlaudiotime;
 }
 
-void *S_LockBuffer(void)
+
+/*
+====================
+SndSys_LockRenderBuffer
+
+Get the exclusive lock on "snd_renderbuffer"
+====================
+*/
+qboolean SndSys_LockRenderBuffer (void)
 {
        SDL_LockAudio();
-       return shm->buffer;
+       return true;
 }
 
-void S_UnlockBuffer(void)
+
+/*
+====================
+SndSys_UnlockRenderBuffer
+
+Release the exclusive lock on "snd_renderbuffer"
+====================
+*/
+void SndSys_UnlockRenderBuffer (void)
 {
        SDL_UnlockAudio();
 }
 
-static void Buffer_Callback(void *userdata, Uint8 *stream, int len)
+/*
+====================
+SndSys_SendKeyEvents
+
+Send keyboard events originating from the sound system (e.g. MIDI)
+====================
+*/
+void SndSys_SendKeyEvents(void)
 {
-       if( len > as.size )
-               len = as.size;
-       if( len > as.size - as.pos ) {
-               memcpy( stream, (Uint8*) as.buffer + as.pos, as.size - as.pos );
-               len -= as.size - as.pos;
-               as.pos = 0;
-       }
-       memcpy( stream, (Uint8*) as.buffer + as.pos, len );
-       as.pos = (as.pos + len) % as.size;
+       // not supported
 }
-