]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_sdl.c
Add process nice settings to the sys struct
[xonotic/darkplaces.git] / snd_sdl.c
index 850ca773e4d4054ecdb56bc94e15401ce2d11a55..98169a0672d9423e7fff5ffd856dc8566e5ef15a 100644 (file)
--- a/snd_sdl.c
+++ b/snd_sdl.c
@@ -68,10 +68,20 @@ static void Buffer_Callback (void *userdata, Uint8 *stream, int len)
 
                        PartialLength2 = FrameCount * factor - PartialLength1;
                        memcpy(&stream[PartialLength1], &snd_renderbuffer->ring[0], PartialLength2);
+
+                       // As of SDL 2.0 buffer needs to be fully initialized, so fill leftover part with silence
+                       // FIXME this is another place that assumes 8bit is always unsigned and others always signed
+                       memset(&stream[PartialLength1 + PartialLength2], snd_renderbuffer->format.width == 1 ? 0x80 : 0, len - (PartialLength1 + PartialLength2));
                }
                else
+               {
                        memcpy(stream, &snd_renderbuffer->ring[StartOffset * factor], FrameCount * factor);
 
+                       // As of SDL 2.0 buffer needs to be fully initialized, so fill leftover part with silence
+                       // FIXME this is another place that assumes 8bit is always unsigned and others always signed
+                       memset(&stream[FrameCount * factor], snd_renderbuffer->format.width == 1 ? 0x80 : 0, len - (FrameCount * factor));
+               }
+
                snd_renderbuffer->startframe += FrameCount;
 
                if (FrameCount < RequestedFrames && developer_insane.integer && vid_activewindow)
@@ -120,23 +130,23 @@ qboolean SndSys_Init (snd_format_t* fmt)
        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",
+                               "    Channels  : %i\n"
+                               "    Format    : 0x%X\n"
+                               "    Frequency : %i\n"
+                               "    Samples   : %i\n",
                                wantspec.channels, wantspec.format, wantspec.freq, wantspec.samples);
 
        if ((audio_device = SDL_OpenAudioDevice(NULL, 0, &wantspec, &obtainspec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE | SDL_AUDIO_ALLOW_CHANNELS_CHANGE)) == 0)
        {
-               Con_Printf( "Failed to open the audio device! (%s)\n", SDL_GetError() );
+               Con_Errorf( "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",
+                               "    Channels  : %i\n"
+                               "    Format    : 0x%X\n"
+                               "    Frequency : %i\n"
+                               "    Samples   : %i\n",
                                obtainspec.channels, obtainspec.format, obtainspec.freq, obtainspec.samples);
 
        fmt->speed = obtainspec.freq;