summaryrefslogtreecommitdiff
path: root/eitscan.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-09-06 13:22:24 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-09-06 13:22:24 +0200
commitee10028dc6ce314e1848a206bbdde18bde40b4ec (patch)
treec0e8920a6779ab82cc52050e602b21895deeaf52 /eitscan.h
parent6d677e2a89afe9ceb91483f4da581cdad6f8cc5d (diff)
downloadvdr-ee10028dc6ce314e1848a206bbdde18bde40b4ec.tar.gz
vdr-ee10028dc6ce314e1848a206bbdde18bde40b4ec.tar.bz2
The DVB devices no longer send CA descriptors to the CAM while the EPG scanner is active
Diffstat (limited to 'eitscan.h')
-rw-r--r--eitscan.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/eitscan.h b/eitscan.h
index 609bf78f..420f47d0 100644
--- a/eitscan.h
+++ b/eitscan.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: eitscan.h 1.3 2003/05/24 13:21:36 kls Exp $
+ * $Id: eitscan.h 1.4 2003/09/06 13:05:51 kls Exp $
*/
#ifndef __EITSCAN_H
@@ -19,6 +19,7 @@ private:
ScanTimeout = 20
};
time_t lastScan, lastActivity;
+ cDevice *currentDevice;
int currentChannel;
int lastChannel[MAXDEVICES];
int numTransponders, *transponders;
@@ -27,6 +28,7 @@ public:
cEITScanner(void);
~cEITScanner();
bool Active(void) { return currentChannel; }
+ bool UsesDevice(const cDevice *Device) { return currentDevice == Device; }
void Activity(void);
void Process(void);
};