diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-05 15:48:05 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-11-05 15:48:05 +0100 |
commit | 27ab07e80d2855b63e2d1df700bc307699fed6fb (patch) | |
tree | 0991809bc9a79ff235d93eeee1b593afbf0e4b4d /device.h | |
parent | 596e965a5334fec97b4ee4fd19223b6acfacf680 (diff) | |
download | vdr-27ab07e80d2855b63e2d1df700bc307699fed6fb.tar.gz vdr-27ab07e80d2855b63e2d1df700bc307699fed6fb.tar.bz2 |
The EPG scan no longer disturbs players that have also set live PIDs
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.65 2005/09/17 14:29:28 kls Exp $ + * $Id: device.h 1.66 2005/11/05 15:25:41 kls Exp $ */ #ifndef __DEVICE_H @@ -215,6 +215,9 @@ public: ///< function itself actually returns true. ///< The default implementation always returns false, so a derived cDevice ///< class that can provide channels must implement this function. + virtual bool MaySwitchTransponder(void); + ///< Returns true if it is ok to switch the transponder on this device, + ///< without disturbing any other activities. bool SwitchChannel(const cChannel *Channel, bool LiveView); ///< Switches the device to the given Channel, initiating transfer mode ///< if necessary. |