]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_sdl.c
use -MMD instead of -MD for making dependencies, this skips system
[xonotic/darkplaces.git] / snd_sdl.c
index 64f0dde64c3870c0db6d171ade524a9e70786282..dae644de4c4220e3ab609cc732ce265c0847a0ca 100644 (file)
--- a/snd_sdl.c
+++ b/snd_sdl.c
@@ -39,6 +39,14 @@ static void Buffer_Callback (void *userdata, Uint8 *stream, int len)
 
        RequestedFrames = (unsigned int)len / factor;
 
+       if (snd_usethreadedmixing)
+       {
+               S_MixToBuffer(stream, RequestedFrames);
+               if (snd_blocked)
+                       memset(stream, snd_renderbuffer->format.width == 1 ? 0x80 : 0, len);
+               return;
+       }
+
        // Transfert up to a chunk of samples from snd_renderbuffer to stream
        MaxFrames = snd_renderbuffer->endframe - snd_renderbuffer->startframe;
        if (MaxFrames > RequestedFrames)
@@ -63,7 +71,7 @@ static void Buffer_Callback (void *userdata, Uint8 *stream, int len)
        snd_renderbuffer->startframe += FrameCount;
 
        if (FrameCount < RequestedFrames && developer.integer >= 1000 && vid_activewindow)
-               Con_DPrintf("SDL sound: %u sample frames missing\n", RequestedFrames - FrameCount);
+               Con_Printf("SDL sound: %u sample frames missing\n", RequestedFrames - FrameCount);
 
        sdlaudiotime += RequestedFrames;
 }
@@ -83,7 +91,9 @@ qboolean SndSys_Init (const snd_format_t* requested, snd_format_t* suggested)
        SDL_AudioSpec wantspec;
        SDL_AudioSpec obtainspec;
 
-       Con_Print ("SndSys_Init: using the SDL module\n");
+       snd_threaded = false;
+
+       Con_DPrint ("SndSys_Init: using the SDL module\n");
 
        // Init the SDL Audio subsystem
        if( SDL_InitSubSystem( SDL_INIT_AUDIO ) ) {
@@ -101,7 +111,7 @@ qboolean SndSys_Init (const snd_format_t* requested, snd_format_t* suggested)
        wantspec.channels = requested->channels;
        wantspec.samples = CeilPowerOf2(buffersize);  // needs to be a power of 2 on some platforms.
 
-       Con_DPrintf("Wanted audio Specification:\n"
+       Con_Printf("Wanted audio Specification:\n"
                                "\tChannels  : %i\n"
                                "\tFormat    : 0x%X\n"
                                "\tFrequency : %i\n"
@@ -114,7 +124,7 @@ qboolean SndSys_Init (const snd_format_t* requested, snd_format_t* suggested)
                return false;
        }
 
-       Con_DPrintf("Obtained audio specification:\n"
+       Con_Printf("Obtained audio specification:\n"
                                "\tChannels  : %i\n"
                                "\tFormat    : 0x%X\n"
                                "\tFrequency : %i\n"
@@ -140,6 +150,8 @@ qboolean SndSys_Init (const snd_format_t* requested, snd_format_t* suggested)
                return false;
        }
 
+       snd_threaded = true;
+
        snd_renderbuffer = Snd_CreateRingBuffer(requested, 0, NULL);
        if (snd_channellayout.integer == SND_CHANNELLAYOUT_AUTO)
        {