summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2009-02-05 17:58:15 +0100
committerJochen Dolze <vdr@dolze.de>2009-02-05 17:58:15 +0100
commit210b6ab3d8a5367e116afefe31cea1d83fa094b9 (patch)
treea5a11ba0489b725994db55622ee7f2402cff03e9 /global.h
parent54a468314486b9c5e9ea34d36791873d54fb8365 (diff)
downloadvdr-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.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/global.h b/global.h
index 79f6cb5..fa52fda 100644
--- a/global.h
+++ b/global.h
@@ -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()
{