Reduce non-Windows Tx audio buffer size

This commit is contained in:
Bill Somerville 2020-12-01 21:05:01 +00:00
parent 6214cc9835
commit 041c6b68fe
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 4 additions and 2 deletions

View File

@ -106,9 +106,11 @@ void SoundOutput::restart (QIODevice * source)
//qDebug () << "SoundOut default buffer size (bytes):" << m_stream->bufferSize () << "period size:" << m_stream->periodSize ();
if (m_framesBuffered)
{
//#if defined (Q_OS_WIN)
#if defined (Q_OS_WIN)
m_stream->setBufferSize (m_stream->format().bytesForFrames (m_framesBuffered));
//#endif
#else
m_stream->setBufferSize (m_stream->format().bytesForFrames (3456));
#endif
}
m_stream->setCategory ("production");
m_stream->start (source);