Increase PulseAudio buffer size

This commit is contained in:
Jack Andersen 2018-06-01 20:05:45 -10:00
parent 1a71ed813a
commit 82966931f8
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ struct PulseAudioVoiceEngine : LinuxMidi
pa_buffer_attr bufAttr;
bufAttr.minreq = uint32_t(m_5msFrames * m_sampleSpec.channels * sizeof(float));
bufAttr.maxlength = bufAttr.minreq * 12;
bufAttr.maxlength = bufAttr.minreq * 24;
bufAttr.tlength = bufAttr.maxlength;
bufAttr.prebuf = UINT32_MAX;
bufAttr.fragsize = UINT32_MAX;