# HG changeset patch # User Chris Cannam # Date 1317212934 -3600 # Node ID a9f1850b873dacf90ce42935f79aaff97b71d42a # Parent 5e1711be654d820c25b8c346cad19cd6b71c29c8 Reduce PortAudio suggested latency. No idea whether this will really help anything, but it probably won't hurt diff -r 5e1711be654d -r a9f1850b873d audioio/AudioPortAudioTarget.cpp --- a/audioio/AudioPortAudioTarget.cpp Wed Aug 10 16:00:55 2011 +0100 +++ b/audioio/AudioPortAudioTarget.cpp Wed Sep 28 13:28:54 2011 +0100 @@ -59,7 +59,7 @@ op.device = Pa_GetDefaultOutputDevice(); op.channelCount = 2; op.sampleFormat = paFloat32; - op.suggestedLatency = 1.0; + op.suggestedLatency = 0.2; op.hostApiSpecificStreamInfo = 0; err = Pa_OpenStream(&m_stream, 0, &op, m_sampleRate, paFramesPerBufferUnspecified,