Index: backends/platform/sdl/sdl.cpp =================================================================== --- backends/platform/sdl/sdl.cpp (Revision 32254) +++ backends/platform/sdl/sdl.cpp (Arbeitskopie) @@ -403,10 +403,10 @@ _samplesPerSec = SAMPLES_PER_SEC; // Determine the sample buffer size. We want it to store enough data for - // about 1/10th of a second. Note that it must be a power of two. - // So e.g. at 22050 Hz, we request a sample buffer size of 2048. - int samples = 0x8000; - while (10 * samples >= _samplesPerSec) { + // about 1/64th of a second. Note that it must be a power of two. + // So e.g. at 22050 Hz, we request a sample buffer size of 256. + int samples = 8192; + while (64 * samples >= _samplesPerSec) { samples >>= 1; }