mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Added subtable ID and TSDT handling to 'libsi'
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user