diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-26 08:06:11 +0100 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-26 08:06:11 +0100 |
commit | 64982e79e1499e58dfb56bb7d058721203abde3d (patch) | |
tree | 47d5bf19a9725669ab41bf9cd207102d421cae77 /dxr3interface.h | |
parent | 45c541593021af75f952eac7862a8a4db410f7bd (diff) | |
download | vdr-plugin-dxr3-64982e79e1499e58dfb56bb7d058721203abde3d.tar.gz vdr-plugin-dxr3-64982e79e1499e58dfb56bb7d058721203abde3d.tar.bz2 |
remove unused code in the demux device
The big goal for the next days will be to throw away the whole
demuxdevice and add a very small and easy to understand demuxer. The current
demuxdevice has a very bad coding style and is quite hard to follow whats
going on.
Diffstat (limited to 'dxr3interface.h')
-rw-r--r-- | dxr3interface.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dxr3interface.h b/dxr3interface.h index 20d60c0..b7b6dc0 100644 --- a/dxr3interface.h +++ b/dxr3interface.h @@ -167,7 +167,6 @@ private: // dxr3 clock cDxr3SysClock* m_pClock; ///< clock used for sync - int m_aspectDelayCounter; uint32_t m_aspectRatio; ///< current used aspect ratio uint32_t m_horizontal; ///< horizontal size of current videostream uint32_t m_vertical; ///< vertical size of current videostream @@ -190,11 +189,11 @@ protected: static void Lock() { - cDxr3Interface::m_pMutex->Lock(); + cDxr3Interface::m_pMutex->Lock(); } static void Unlock() { - cDxr3Interface::m_pMutex->Unlock(); + cDxr3Interface::m_pMutex->Unlock(); } }; |