diff options
author | scop <scop> | 2005-04-18 19:26:16 +0000 |
---|---|---|
committer | scop <scop> | 2005-04-18 19:26:16 +0000 |
commit | f8a3d81fc0b548a0f76e205fee433e4c94a4ee57 (patch) | |
tree | 2f69513d7d57e15b920c8eb4bb4b4a877d5b0881 /dxr3sysclock.h | |
parent | 37c4c7b0a4a388d6c933e95756ddd30dd0cca6fd (diff) | |
download | vdr-plugin-dxr3-f8a3d81fc0b548a0f76e205fee433e4c94a4ee57.tar.gz vdr-plugin-dxr3-f8a3d81fc0b548a0f76e205fee433e4c94a4ee57.tar.bz2 |
Oops, wrong tree... revert.
Diffstat (limited to 'dxr3sysclock.h')
-rw-r--r-- | dxr3sysclock.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/dxr3sysclock.h b/dxr3sysclock.h index e8394ef..21910e0 100644 --- a/dxr3sysclock.h +++ b/dxr3sysclock.h @@ -29,28 +29,28 @@ // work with dxr3's clock class cDxr3SysClock { - public: - cDxr3SysClock(int fd_control, int fd_video, int fd_spu) : m_fdcontrol(fd_control), +public: + cDxr3SysClock(int fd_control, int fd_video, int fd_spu) : m_fdcontrol(fd_control), m_fdvideo(fd_video), m_fdspu(fd_spu), m_offset(0) {}; - virtual ~cDxr3SysClock() {}; + virtual ~cDxr3SysClock() {}; - public: - void SetSysClock(uint32_t scr); - uint32_t GetSysClock(void); - void SetPts(uint32_t pts); - void SetSpuPts(uint32_t pts); +public: + void SetSysClock(uint32_t scr); + uint32_t GetSysClock(void); + void SetPts(uint32_t pts); + void SetSpuPts(uint32_t pts); - protected: - int m_fdcontrol; - int m_fdvideo; - int m_fdspu; - uint32_t m_offset; - cMutex mutex; +protected: + int m_fdcontrol; + int m_fdvideo; + int m_fdspu; + uint32_t m_offset; + cMutex mutex; - protected: - cDxr3SysClock(); // you are not allowed to use this contructor - cDxr3SysClock(cDxr3SysClock&); // no copy constructor +protected: + cDxr3SysClock(); // you are not allowed to use this contructor + cDxr3SysClock(cDxr3SysClock&); // no copy constructor }; #endif /*_DXR3_SYSCLOCK_H_*/ |