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.
This commit is contained in:
Tobias Doerffel
2009-11-29 15:37:42 +01:00
parent 03d3548ba1
commit c9802d8a26

View File

@@ -22,7 +22,6 @@
*
*/
#include <QtCore/QFile>
#include <QTimer>
@@ -157,11 +156,7 @@ void ProjectRenderer::startProcessing()
// called immediately
engine::mixer()->setAudioOutputContext( m_context );
start(
#ifndef LMMS_BUILD_WIN32
QThread::HighPriority
#endif
);
start();
}
}