diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-04-01 12:39:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-04-01 12:39:46 +0200 |
commit | 8d3ae53bcd62ac659c3105b791ead80ed729b317 (patch) | |
tree | a378154121a1d76f93218b5201eab97d67765c81 /epg.h | |
parent | d6f57259fa570f706fc412f9c0de925097edda09 (diff) | |
download | vdr-8d3ae53bcd62ac659c3105b791ead80ed729b317.tar.gz vdr-8d3ae53bcd62ac659c3105b791ead80ed729b317.tar.bz2 |
Changed tEventID back to u_int32_t
Diffstat (limited to 'epg.h')
-rw-r--r-- | epg.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.h 4.2 2017/03/31 15:24:35 kls Exp $ + * $Id: epg.h 4.3 2017/04/01 12:27:28 kls Exp $ */ #ifndef __EPG_H @@ -66,7 +66,7 @@ public: class cSchedule; -typedef u_int16_t tEventID; +typedef u_int32_t tEventID; class cEvent : public cListObject { friend class cSchedule; @@ -84,9 +84,9 @@ private: char *shortText; // Short description of this event (typically the episode name in case of a series) char *description; // Description of this event cComponents *components; // The stream components of this event - uchar contents[MaxEventContents]; // Contents of this event time_t startTime; // Start time of this event int duration; // Duration of this event in seconds + uchar contents[MaxEventContents]; // Contents of this event time_t vps; // Video Programming Service timestamp (VPS, aka "Programme Identification Label", PIL) time_t seen; // When this event was last seen in the data stream public: |