diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3outputthread.c | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -274,6 +274,7 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - removed explicit linking with zlib (Christian Gmeiner) - compiles now with 3.4.x gcc's (Christian Gmeiner, Ville Skyttä) - use $CXX for generating dependencies instead of hardcoded g++ (Ville Skyttä) +- added descriptions to audio and video output threads (Ville Skyttä) - made "all" the default target in Makefile (Ville Skyttä) - assume SSE support implies MMXEXT support, this enables optimized memcpy routines on more systems (Ville Skyttä) diff --git a/dxr3outputthread.c b/dxr3outputthread.c index 3d4da85..300d0e7 100644 --- a/dxr3outputthread.c +++ b/dxr3outputthread.c @@ -64,6 +64,9 @@ bool cDxr3OutputThread::GetStopSignal() cDxr3AudioOutThread::cDxr3AudioOutThread(cDxr3Interface& dxr3Device, cDxr3SyncBuffer& buffer) : cDxr3OutputThread(dxr3Device, buffer) { +#if VDRVERSNUM >= 10300 + SetDescription("DXR3 audio output"); +#endif } // ================================== @@ -146,6 +149,9 @@ void cDxr3AudioOutThread::Action() cDxr3VideoOutThread::cDxr3VideoOutThread(cDxr3Interface& dxr3Device, cDxr3SyncBuffer& buffer) : cDxr3OutputThread(dxr3Device, buffer) { +#if VDRVERSNUM >= 10300 + SetDescription("DXR3 video output"); +#endif } // ================================== |