diff options
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_*/ |