diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-15 07:43:25 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-15 07:43:25 +0200 |
commit | ce1429756946637a538872a606bfeaa755be2fb3 (patch) | |
tree | 00ca30219f2accebb74c0ee328317482031d35e0 /dxr3pesframe.h | |
parent | 5aea3dffcc904d9429b2b28fd6106579c3a520b2 (diff) | |
download | vdr-plugin-dxr3-ce1429756946637a538872a606bfeaa755be2fb3.tar.gz vdr-plugin-dxr3-ce1429756946637a538872a606bfeaa755be2fb3.tar.bz2 |
remove GetStreamId() and co
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r-- | dxr3pesframe.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/dxr3pesframe.h b/dxr3pesframe.h index 650ba4e..c0f1202 100644 --- a/dxr3pesframe.h +++ b/dxr3pesframe.h @@ -112,7 +112,6 @@ public: m_aspectRatio(m_staticAspectRatio), m_horizontalSize(m_staticHorizontalSize), m_verticalSize(m_staticVerticalSize), - m_streamId(0), m_pNextStart(0), m_remainingLength(0), m_offset(0) {}; @@ -190,13 +189,6 @@ public: return m_verticalSize; } - uint8_t GetStreamId() const - { - assert(m_bValid); - assert(m_pesDataType == PES_VIDEO_DATA); - return m_streamId; - } - int GetOffset() const { assert(m_bValid); @@ -228,7 +220,6 @@ protected: m_aspectRatio = m_staticAspectRatio; m_horizontalSize = m_staticHorizontalSize; m_verticalSize = m_staticVerticalSize; - m_streamId = 0; m_pNextStart = 0; m_remainingLength = 0; m_offset = 0; @@ -245,7 +236,6 @@ protected: uint32_t m_aspectRatio; uint32_t m_horizontalSize; uint32_t m_verticalSize; - uint8_t m_streamId; const uint8_t* m_pNextStart; uint32_t m_remainingLength; |