diff options
author | scop <scop> | 2005-04-19 18:19:34 +0000 |
---|---|---|
committer | scop <scop> | 2005-04-19 18:19:34 +0000 |
commit | f9c59e544ada17055c3ed15b3d80f0d285c3928d (patch) | |
tree | cd7b038c17b040beb435e0a16aab02346854c9ad /dxr3outputthread.h | |
parent | dea137eddfe1017e9ff85a8c221aee2bca4647ad (diff) | |
download | vdr-plugin-dxr3-f9c59e544ada17055c3ed15b3d80f0d285c3928d.tar.gz vdr-plugin-dxr3-f9c59e544ada17055c3ed15b3d80f0d285c3928d.tar.bz2 |
Mass indentation/whitespace cleanup.
Diffstat (limited to 'dxr3outputthread.h')
-rw-r--r-- | dxr3outputthread.h | 41 |
1 files changed, 27 insertions, 14 deletions
diff --git a/dxr3outputthread.h b/dxr3outputthread.h index 38630ae..2c533a7 100644 --- a/dxr3outputthread.h +++ b/dxr3outputthread.h @@ -27,16 +27,29 @@ #include "dxr3audiodecoder.h" // ================================== -class cDxr3OutputThread : public cThread +class cDxr3OutputThread : public cThread { public: cDxr3OutputThread(cDxr3Interface& dxr3Device, cDxr3SyncBuffer& buffer); - virtual ~cDxr3OutputThread() {Cancel();}; - - // virtual void Start(void) {cThread::Start()}; + virtual ~cDxr3OutputThread() + { + Cancel(); + }; + /* + virtual void Start(void) + { + cThread::Start(); + }; + */ void SetStopSignal(); - bool NeedResync() { return m_bNeedResync;}; - void ClearResyncRequest() { m_bNeedResync = false;}; + bool NeedResync() + { + return m_bNeedResync; + }; + void ClearResyncRequest() + { + m_bNeedResync = false; + }; protected: virtual void Action() = 0; @@ -52,32 +65,32 @@ private: }; // ================================== -class cDxr3AudioOutThread : public cDxr3OutputThread +class cDxr3AudioOutThread : public cDxr3OutputThread { public: cDxr3AudioOutThread(cDxr3Interface& dxr3Device, cDxr3SyncBuffer& buffer); virtual ~cDxr3AudioOutThread(); - -protected: + +protected: void Action(); private: -// cDxr3AudioOutThread(); // no standard constructor - cDxr3AudioOutThread(cDxr3AudioOutThread&); // no copy constructor + //cDxr3AudioOutThread(); // no standard constructor + cDxr3AudioOutThread(cDxr3AudioOutThread&); // no copy constructor }; // ================================== -class cDxr3VideoOutThread : public cDxr3OutputThread +class cDxr3VideoOutThread : public cDxr3OutputThread { public: cDxr3VideoOutThread(cDxr3Interface& dxr3Device, cDxr3SyncBuffer& buffer); virtual ~cDxr3VideoOutThread(); -protected: +protected: void Action(); private: -// cDxr3VideoOutThread(); // no standard constructor + //cDxr3VideoOutThread(); // no standard constructor cDxr3VideoOutThread(cDxr3VideoOutThread&); // no copy constructor }; |