summaryrefslogtreecommitdiff
path: root/dxr3sysclock.h
diff options
context:
space:
mode:
authorscop <scop>2005-04-18 19:17:40 +0000
committerscop <scop>2005-04-18 19:17:40 +0000
commit37c4c7b0a4a388d6c933e95756ddd30dd0cca6fd (patch)
tree273ceb29e8631796f83b88e3a133dbab4ccbe2c7 /dxr3sysclock.h
parent4d4c6bb89da5b1cc3eff554412ea834337308cd5 (diff)
downloadvdr-plugin-dxr3-37c4c7b0a4a388d6c933e95756ddd30dd0cca6fd.tar.gz
vdr-plugin-dxr3-37c4c7b0a4a388d6c933e95756ddd30dd0cca6fd.tar.bz2
Add (X)Emacs indentation settings.
Diffstat (limited to 'dxr3sysclock.h')
-rw-r--r--dxr3sysclock.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/dxr3sysclock.h b/dxr3sysclock.h
index 21910e0..e8394ef 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_*/