Added VBITeletextDescriptorTag, TeletextDescriptorTag, LocalTimeOffsetDescriptorTag and PremiereContentTransmissionDescriptor to 'libsi'

This commit is contained in:
Klaus Schmidinger
2006-04-14 10:59:03 +02:00
parent 90affbed35
commit f3feda52cd
9 changed files with 393 additions and 16 deletions

View File

@@ -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