From ad8c33bee78dda1c706676b0a7a92ee93c7dc6d2 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Thu, 3 Dec 2020 14:31:46 +0000 Subject: [PATCH] Try not setting low-latency audio category --- Audio/soundout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Audio/soundout.cpp b/Audio/soundout.cpp index 54b765e22..7f38447ac 100644 --- a/Audio/soundout.cpp +++ b/Audio/soundout.cpp @@ -109,7 +109,7 @@ void SoundOutput::restart (QIODevice * source) { m_stream->setBufferSize (m_stream->format().bytesForFrames (m_framesBuffered)); } - m_stream->setCategory ("game"); + m_stream->setCategory ("production"); m_stream->start (source); LOG_INFO ("Selected buffer size (bytes): " << m_stream->bufferSize () << " period size: " << m_stream->periodSize ()); }