diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-18 22:19:43 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-18 22:19:43 +0200 |
commit | 5ef3a580f3286faedd3cf9d941f942dcb81b0125 (patch) | |
tree | 4f419441fe35b0d6964564e1ba8220d1db3dbf7c /dxr3pesframe.h | |
parent | 6e20ef91e3a98a520485ab75044f2ef50bb44519 (diff) | |
download | vdr-plugin-dxr3-5ef3a580f3286faedd3cf9d941f942dcb81b0125.tar.gz vdr-plugin-dxr3-5ef3a580f3286faedd3cf9d941f942dcb81b0125.tar.bz2 |
get rid of an assumption of older vdr version
If we have a lookt at comments about Play* mehtods in device.h, we can
read the following line:
' ///< Data points to exactly one complete PES packet of the given Length.'
As a result of this, there is no need to parse in the data pointer for more
then one pes packet.
Diffstat (limited to 'dxr3pesframe.h')
-rw-r--r-- | dxr3pesframe.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dxr3pesframe.h b/dxr3pesframe.h index 9c68b89..5719bfb 100644 --- a/dxr3pesframe.h +++ b/dxr3pesframe.h @@ -150,11 +150,6 @@ public: return m_pNextStart; } - uint32_t GetRemainingLength() const - { - return m_remainingLength; - } - uint32_t GetPts() const { assert(m_bValid); |