code cleanup
This commit is contained in:
parent
9d05436964
commit
dcc4f0596f
1 changed files with 13 additions and 15 deletions
16
src/socket.h
16
src/socket.h
|
@ -100,23 +100,21 @@ public:
|
|||
CHighPrioSocket ( CChannel* pNewChannel,
|
||||
const quint16 iPortNumber )
|
||||
{
|
||||
|
||||
// TEST we have to register some classes to the Qt signal/slot mechanism
|
||||
// since now we actually have thread crossings with the new code
|
||||
// we have to register some classes to the Qt signal/slot mechanism
|
||||
// since we have thread crossings with the threaded code
|
||||
qRegisterMetaType<CVector<uint8_t> > ( "CVector<uint8_t>" );
|
||||
qRegisterMetaType<CHostAddress> ( "CHostAddress" );
|
||||
|
||||
|
||||
// TEST actual creation of the new thread, see internet references below:
|
||||
// http://qt-project.org/forums/viewthread/14393
|
||||
// http://qt-project.org/doc/qt-5.0/qtcore/qthread.html#Priority-enum
|
||||
// Creation of the new socket thread which has to have the highest
|
||||
// possible thread priority to make sure the jitter buffer is reliably
|
||||
// filled with the network audio packets and does not get interrupted
|
||||
// by other GUI threads. The following code is based on:
|
||||
// http://qt-project.org/wiki/Threads_Events_QObjects
|
||||
|
||||
pSocket = new CSocket ( pNewChannel, iPortNumber );
|
||||
pSocket->moveToThread ( &NetworkWorkerThread );
|
||||
NetworkWorkerThread.start ( QThread::TimeCriticalPriority );
|
||||
|
||||
|
||||
// connect the "InvalidPacketReceived" signal
|
||||
QObject::connect ( pSocket,
|
||||
SIGNAL ( InvalidPacketReceived ( CVector<uint8_t>, int, CHostAddress ) ),
|
||||
SIGNAL ( InvalidPacketReceived ( CVector<uint8_t>, int, CHostAddress ) ) );
|
||||
|
|
Loading…
Reference in a new issue