diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-14 10:59:03 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-14 10:59:03 +0200 |
commit | f3feda52cd6d4bce31e62bb727d43ec258b3f64b (patch) | |
tree | df02880efc7182d1d7453f65a65ea7d7a9f1b1c8 /libsi/section.h | |
parent | 90affbed3527d1e0028cdb7ee2d7ca6adb0649f0 (diff) | |
download | vdr-f3feda52cd6d4bce31e62bb727d43ec258b3f64b.tar.gz vdr-f3feda52cd6d4bce31e62bb727d43ec258b3f64b.tar.bz2 |
Added VBITeletextDescriptorTag, TeletextDescriptorTag, LocalTimeOffsetDescriptorTag and PremiereContentTransmissionDescriptor to 'libsi'
Diffstat (limited to 'libsi/section.h')
-rw-r--r-- | libsi/section.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/libsi/section.h b/libsi/section.h index 5b43f05f..29af7f4b 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.3 2004/02/20 13:45:45 kls Exp $ + * $Id: section.h 1.4 2006/04/14 10:53:44 kls Exp $ * * ***************************************************************************/ @@ -260,6 +260,21 @@ protected: virtual void Parse(); }; +/* Premiere Content Information Table */ + +class PremiereCIT : public NumberedSection { +public: + PremiereCIT(const unsigned char *data, bool doCopy=true) : NumberedSection(data, doCopy) {} + PremiereCIT() {} + int getContentId() const; + time_t getDuration() const; + PCIT_DescriptorLoop eventDescriptors; +protected: + virtual void Parse(); +private: + const pcit *s; +}; + } //end of namespace #endif //LIBSI_TABLE_H |