diff options
author | rofafor <rofafor> | 2012-03-10 20:54:06 +0000 |
---|---|---|
committer | rofafor <rofafor> | 2012-03-10 20:54:06 +0000 |
commit | 615a043c30c6507b89d6816d29a27162b66eb71a (patch) | |
tree | 9a7fbedc072fa590886c07f1ad2940a00256672b | |
parent | 911cff0b7c895eda4fa9705759e6c8ffeafe1a8b (diff) | |
download | xineliboutput-615a043c30c6507b89d6816d29a27162b66eb71a.tar.gz xineliboutput-615a043c30c6507b89d6816d29a27162b66eb71a.tar.bz2 |
Added support for vdr-1.7.26.
-rw-r--r-- | device.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.c,v 1.117 2012-01-18 13:38:28 phintuka Exp $ + * $Id: device.c,v 1.118 2012-03-10 20:54:06 rofafor Exp $ * */ @@ -77,7 +77,11 @@ class cXinelibStatusMonitor : public cStatus }; protected: +#if VDRVERSNUM < 10726 virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber); +#else + virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView); +#endif virtual void Replaying(const cControl *Control, const char *Name, const char *FileName, bool On); @@ -112,7 +116,11 @@ class cXinelibStatusMonitor : public cStatus }; void cXinelibStatusMonitor::ChannelSwitch(const cDevice *Device, +#if VDRVERSNUM < 10726 int ChannelNumber) +#else + int ChannelNumber, bool LiveView) +#endif { TRACEF("cXinelibStatusMonitor::ChannelSwitch"); TRACK_TIME(200); |