diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2001-08-18 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2001-08-18 18:00:00 +0200 |
commit | 371bf0665eda455c67926999f52b4850cd8529e4 (patch) | |
tree | 383f39f92ef1f3846d89e4ae6ad7e39699334f01 /eit.h | |
parent | efea0f64d08052b0189d962101e1a3634d4adfc8 (diff) | |
download | vdr-patch-lnbsharing-371bf0665eda455c67926999f52b4850cd8529e4.tar.gz vdr-patch-lnbsharing-371bf0665eda455c67926999f52b4850cd8529e4.tar.bz2 |
Version 0.92vdr-0.92
- The "channel not sync'ed" log message now also lists the card number.
- Now using the EIT services from 'libdtv' (thanks to Rolf Hakenes), which
provides EPG information for NVOD ("Near Video On Demand") channels.
- Doing some bug fixing on the EPG data (some tv stations apparently have
their own idea on how to fill in the data...). The level up to which EPG
bugs are fixed can be controlled with the EPGBugfixLevel parameter in the
"Setup" menu (see MANUAL for details, and cEventInfo::FixEpgBugs() in eit.c
for the actual implementation).
- Fixed broken recordings after a driver buffer overflow.
- Fixed the chirping sound after Pause/Play of a DVD (thanks to Andreas
Schultz).
Diffstat (limited to 'eit.h')
-rw-r--r-- | eit.h | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -4,6 +4,9 @@ begin : Fri Aug 25 2000 copyright : (C) 2000 by Robert Schneider email : Robert.Schneider@web.de + + 2001-08-15: Adapted to 'libdtv' by Rolf Hakenes <hakenes@hippomi.de> + ***************************************************************************/ /*************************************************************************** @@ -13,7 +16,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: eit.h 1.8 2001/08/11 09:06:17 kls Exp $ + * $Id: eit.h 1.10 2001/08/15 15:47:31 kls Exp $ ***************************************************************************/ #ifndef __EIT_H @@ -35,19 +38,17 @@ private: unsigned short uEventID; // Event ID of this event long lDuration; // duration of event in seconds time_t tTime; // Start time - u_char cExtendedDescriptorNumber; // current extended descriptor number that has to be inserted int nChannelNumber; // the actual channel number from VDR's channel list (used in cMenuSchedule for sorting by channel number) protected: void SetFollowing(bool foll); void SetPresent(bool pres); - bool SetTitle(char *string); + bool SetTitle(const char *string); void SetServiceID(unsigned short servid); void SetEventID(unsigned short evid); void SetDuration(long l); void SetTime(time_t t); - bool AddExtendedDescription(char *string); - bool SetSubtitle(char *string); - void IncreaseExtendedDescriptorNumber(void); + bool AddExtendedDescription(const char *string); + bool SetSubtitle(const char *string); cEventInfo(unsigned short serviceid, unsigned short eventid); public: ~cEventInfo(); @@ -62,11 +63,11 @@ public: unsigned short GetEventID(void) const; long GetDuration(void) const; time_t GetTime(void) const; - u_char GetExtendedDescriptorNumber(void) const; unsigned short GetServiceID(void) const; int GetChannelNumber(void) const { return nChannelNumber; } void SetChannelNumber(int ChannelNumber) const { ((cEventInfo *)this)->nChannelNumber = ChannelNumber; } // doesn't modify the EIT data, so it's ok to make it 'const' void Dump(FILE *f, const char *Prefix = "") const; + void FixEpgBugs(void); }; class cSchedule : public cListObject { |