diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-04 12:30:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-04 12:30:00 +0100 |
commit | 8976ebcec5ca1ac03c54209b7cc12e9d14915c6b (patch) | |
tree | 8562202f489ee585c1252b2cb4a9e61b3e200efe /dvbdevice.h | |
parent | 3a1058fe1fca6d10cea42786aa54abf3d0bd0b94 (diff) | |
download | vdr-8976ebcec5ca1ac03c54209b7cc12e9d14915c6b.tar.gz vdr-8976ebcec5ca1ac03c54209b7cc12e9d14915c6b.tar.bz2 |
Implemented automatic PID switching and channel detection
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index f6f6f484..f64e6dda 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.25 2003/12/21 14:04:00 kls Exp $ + * $Id: dvbdevice.h 1.26 2004/01/03 10:21:50 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -44,6 +44,7 @@ protected: public: cDvbDevice(int n); virtual ~cDvbDevice(); + virtual int ProvidesCa(const cChannel *Channel) const; virtual bool HasDecoder(void) const; // OSD facilities @@ -61,9 +62,12 @@ private: void TurnOffLiveMode(void); public: virtual bool ProvidesSource(int Source) const; + virtual bool ProvidesTransponder(const cChannel *Channel) const; virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1, bool *NeedsDetachReceivers = NULL) const; protected: virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView); +public: + virtual bool HasLock(void); // PID handle facilities |