diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-20 13:54:14 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-20 13:54:14 +0100 |
commit | 402184b9da571d8bed4e6c118074d451c6b355f1 (patch) | |
tree | f60f8c5ce2ca989062899663a989c748b77bb078 /libsi/section.h | |
parent | c817c341cead8ddbb8f544d6dd5e4dbe4050af19 (diff) | |
download | vdr-402184b9da571d8bed4e6c118074d451c6b355f1.tar.gz vdr-402184b9da571d8bed4e6c118074d451c6b355f1.tar.bz2 |
Added subtable ID and TSDT handling to 'libsi'
Diffstat (limited to 'libsi/section.h')
-rw-r--r-- | libsi/section.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/libsi/section.h b/libsi/section.h index efca9bb6..5b43f05f 100644 --- a/libsi/section.h +++ b/libsi/section.h @@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: section.h 1.2 2003/12/13 10:42:15 kls Exp $ + * $Id: section.h 1.3 2004/02/20 13:45:45 kls Exp $ * * ***************************************************************************/ @@ -77,6 +77,17 @@ private: const pmt *s; }; +class TSDT : public NumberedSection { +public: + TSDT(const unsigned char *data, bool doCopy=true) : NumberedSection(data, doCopy) {} + TSDT() {} + DescriptorLoop transportStreamDescriptors; +protected: + virtual void Parse(); +private: + const tsdt *s; +}; + class NIT : public NumberedSection { public: NIT(const unsigned char *data, bool doCopy=true) : NumberedSection(data, doCopy) {} @@ -166,6 +177,8 @@ public: int getServiceId() const; int getTransportStreamId() const; int getOriginalNetworkId() const; + int getSegmentLastSectionNumber() const; + int getLastTableId() const; StructureLoop<Event> eventLoop; //true if table conveys present/following information, false if it conveys schedule information |