summaryrefslogtreecommitdiff
path: root/dvbapi.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-02-03 17:44:25 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2001-02-03 17:44:25 +0100
commit2adfad282320b6a6b116284507aac870d536a69a (patch)
treed0f2c47ad29fe88878f92415d6d557a299ca342e /dvbapi.h
parent20d94646d188e874898e1d0e3e18a70cefa0eac3 (diff)
downloadvdr-2adfad282320b6a6b116284507aac870d536a69a.tar.gz
vdr-2adfad282320b6a6b116284507aac870d536a69a.tar.bz2
The EPG scanner now scans each transponder only once per cycle
Diffstat (limited to 'dvbapi.h')
-rw-r--r--dvbapi.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/dvbapi.h b/dvbapi.h
index c7c8fb40..634fabfe 100644
--- a/dvbapi.h
+++ b/dvbapi.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbapi.h 1.32 2001/02/03 15:59:35 kls Exp $
+ * $Id: dvbapi.h 1.33 2001/02/03 17:39:33 kls Exp $
*/
#ifndef __DVBAPI_H
@@ -48,6 +48,8 @@ const char *IndexToHMSF(int Index, bool WithFrame = false);
int HMSFToIndex(const char *HMSF);
// Converts the given string (format: "hh:mm:ss.ff") to an index.
+class cChannel;
+
class cRecordBuffer;
class cReplayBuffer;
class cTransferBuffer;
@@ -256,8 +258,11 @@ private:
};
time_t lastScan, lastActivity;
int currentChannel, lastChannel;
+ int numTransponders, *transponders;
+ bool TransponderScanned(cChannel *Channel);
public:
cEITScanner(void);
+ ~cEITScanner();
bool Active(void) { return currentChannel; }
void Activity(void);
void Process(void);