diff options
author | scop <scop> | 2005-03-22 16:37:26 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-22 16:37:26 +0000 |
commit | 72af882c8c92b00e9957ba3a9f1dc85a87cf3a65 (patch) | |
tree | e3700acf940cdd09d7d78663510525d70368fdae | |
parent | d6c231dff219289c7c17a8d3e60524c0ab168c4f (diff) | |
download | vdr-plugin-dxr3-72af882c8c92b00e9957ba3a9f1dc85a87cf3a65.tar.gz vdr-plugin-dxr3-72af882c8c92b00e9957ba3a9f1dc85a87cf3a65.tar.bz2 |
Sync thread descriptions from 0-2 branch.
-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 } // ================================== |