Skip to content

Commit 307dc4e

Browse files
fwolterrellla
authored andcommitted
Fix thread names
1 parent 8ae6e9c commit 307dc4e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

threads.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ extern "C" {
4343
*
4444
* This thread decodes the video data
4545
****************************************************************************/
46-
cDecodingThread::cDecodingThread(cSoftHdDevice *device) : cThread("[softhddevice] decoding")
46+
cDecodingThread::cDecodingThread(cSoftHdDevice *device) : cThread("softhd decoding")
4747
{
4848
m_pDevice = device;
4949
Start();
@@ -78,7 +78,7 @@ void cDecodingThread::Stop(void)
7878
*
7979
* This thread is responsible for displaying the video and osd
8080
****************************************************************************/
81-
cDisplayThread::cDisplayThread(cVideoRender *render) : cThread("[softhddevice] display")
81+
cDisplayThread::cDisplayThread(cVideoRender *render) : cThread("softhd display")
8282
{
8383
m_pRender = render;
8484
Start();
@@ -120,7 +120,7 @@ void cDisplayThread::Stop(void)
120120
*
121121
* This thread is decodes the audio data and moves it to hardware
122122
****************************************************************************/
123-
cAudioThread::cAudioThread(cSoftHdAudio *audio) : cThread("[softhddevice] audio")
123+
cAudioThread::cAudioThread(cSoftHdAudio *audio) : cThread("softhd audio")
124124
{
125125
m_pAudio = audio;
126126
Start();
@@ -195,7 +195,7 @@ void cAudioThread::SendStartSignal(void)
195195
*
196196
* This thread handles video filters like deinterlacer or scale filter
197197
****************************************************************************/
198-
cFilterThread::cFilterThread(cVideoRender *render) : cThread("[softhddevice] filter")
198+
cFilterThread::cFilterThread(cVideoRender *render) : cThread("softhd filter")
199199
{
200200
m_pRender = render;
201201
}

0 commit comments

Comments
 (0)