summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscop <scop>2005-08-16 17:26:31 +0000
committerscop <scop>2005-08-16 17:26:31 +0000
commit4b7680f3d67714f866fc24758102e427a2b0b48f (patch)
tree7d6d6b2ecb447a100e91b29fc9300ee29382e056
parent290038f3de13b728cab6d3db7729078482903844 (diff)
downloadvdr-plugin-dxr3-4b7680f3d67714f866fc24758102e427a2b0b48f.tar.gz
vdr-plugin-dxr3-4b7680f3d67714f866fc24758102e427a2b0b48f.tar.bz2
Note Running() in VDR >= 1.3.29.
-rw-r--r--dxr3outputthread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dxr3outputthread.h b/dxr3outputthread.h
index 8ac46ee..a0977b0 100644
--- a/dxr3outputthread.h
+++ b/dxr3outputthread.h
@@ -41,7 +41,7 @@ public:
cThread::Start();
};
*/
- void SetStopSignal();
+ void SetStopSignal(); // can be removed when only VDR >= 1.3.29 supported
bool NeedResync()
{
return m_bNeedResync;
@@ -53,11 +53,11 @@ public:
protected:
virtual void Action() = 0;
- bool GetStopSignal();
+ bool GetStopSignal(); // can be replaced by Running() in VDR >= 1.3.29
cDxr3Interface& m_dxr3Device;
cDxr3SyncBuffer& m_buffer;
- bool m_bStopThread;
+ bool m_bStopThread; // can be removed when only VDR >= 1.3.29 supported
bool m_bNeedResync;
private: