Increase buffer size to avoid drops

This commit is contained in:
Henrik Rydgard 2012-04-12 13:28:38 +02:00
parent 0f050d50f0
commit 2993ff1a7b

View file

@ -184,7 +184,7 @@ int main(int argc, char *argv[]) {
fmt.freq = 44100;
fmt.format = AUDIO_S16;
fmt.channels = 2;
fmt.samples = 512;
fmt.samples = 1024;
fmt.callback = &mixaudio;
fmt.userdata = (void *)0;