diff options
author | Jochen Dolze <vdr@dolze.de> | 2009-02-05 17:58:15 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2009-02-05 17:58:15 +0100 |
commit | 210b6ab3d8a5367e116afefe31cea1d83fa094b9 (patch) | |
tree | a5a11ba0489b725994db55622ee7f2402cff03e9 /global.h | |
parent | 54a468314486b9c5e9ea34d36791873d54fb8365 (diff) | |
download | vdr-plugin-infosatepg-210b6ab3d8a5367e116afefe31cea1d83fa094b9.tar.gz vdr-plugin-infosatepg-210b6ab3d8a5367e116afefe31cea1d83fa094b9.tar.bz2 |
Changed setup channel option into Frequency, Polarization, Srate
Add setup option NoWakeup to prevent wakeup
Improved parsing of Shorttext
Fixed bug in event handling
Diffstat (limited to 'global.h')
-rw-r--r-- | global.h | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -118,7 +118,7 @@ private: int numinfosatchannels; int wakeuptime; struct infosatchannels *infosatchannels; - void ResetReceivedAll(void); + int channel; public: cGlobalInfosatepg(); ~cGlobalInfosatepg(); @@ -134,12 +134,17 @@ public: minute=wakeuptime-(hour*100); isyslog("infosatepg: wakeup set to %02i:%02i", hour,minute); } + bool NoWakeup; int WakeupTime() { return wakeuptime; } int LastCurrentChannel; - int Channel; + int Channel() { return channel; } + bool FindReceiverChannel(); + int Frequency; + char Polarization; + int Srate; int Pid; int EventTimeDiff; int WaitTime; @@ -170,6 +175,7 @@ public: bool ProcessedAll; void ResetProcessed (void); + void ResetReceivedAll(void); bool ReceivedAll (int *Day, int *Month); bool ReceivedAll() { |