From c9802d8a26ed19e3843daf437a8137d12a010964 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 29 Nov 2009 15:37:42 +0100 Subject: [PATCH] ProjectRenderer: start thread with normal priority There's no need to start the ProjectRenderer thread with high priority anymore as the actual rendering is done on the other side of the FIFO. The ProjectRenderer just waits for new data in the FIFO and encodes them as they arrive. --- src/core/ProjectRenderer.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/core/ProjectRenderer.cpp b/src/core/ProjectRenderer.cpp index d5bcc926f..3ee3fad79 100644 --- a/src/core/ProjectRenderer.cpp +++ b/src/core/ProjectRenderer.cpp @@ -22,7 +22,6 @@ * */ - #include #include @@ -157,11 +156,7 @@ void ProjectRenderer::startProcessing() // called immediately engine::mixer()->setAudioOutputContext( m_context ); - start( -#ifndef LMMS_BUILD_WIN32 - QThread::HighPriority -#endif - ); + start(); } }