diff options
author | scop <scop> | 2005-08-16 17:26:47 +0000 |
---|---|---|
committer | scop <scop> | 2005-08-16 17:26:47 +0000 |
commit | c0abdadd47309ce967d755b130ecbf2f47a1edf5 (patch) | |
tree | ef2f33b30b5bbec470272a84060ce5c1e6760151 | |
parent | 931a98fa5765ad9d4680cdaa5b23c2ca8a23a889 (diff) | |
download | vdr-plugin-dxr3-c0abdadd47309ce967d755b130ecbf2f47a1edf5.tar.gz vdr-plugin-dxr3-c0abdadd47309ce967d755b130ecbf2f47a1edf5.tar.bz2 |
Note Running() in VDR >= 1.3.29.
-rw-r--r-- | dxr3outputthread.h | 6 |
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: |