summaryrefslogtreecommitdiff
path: root/PLUGINS/src/rcu/rcu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-03-07 14:39:38 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-03-07 14:39:38 +0100
commit57f58a154654311fc70e478c0b36262da5c414c6 (patch)
treec41b574ecc9d1449c0d58150f2ef73c09bad0e99 /PLUGINS/src/rcu/rcu.c
parent680b1b8f8721c0462f04e838dcafd799a10b5574 (diff)
downloadvdr-57f58a154654311fc70e478c0b36262da5c414c6.tar.gz
vdr-57f58a154654311fc70e478c0b36262da5c414c6.tar.bz2
Removed the obsolete function cEITScanner::UsesDevice(); added new parameter LiveView to cStatus::ChannelSwitch()
Diffstat (limited to 'PLUGINS/src/rcu/rcu.c')
-rw-r--r--PLUGINS/src/rcu/rcu.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/PLUGINS/src/rcu/rcu.c b/PLUGINS/src/rcu/rcu.c
index f0abedde..79f46122 100644
--- a/PLUGINS/src/rcu/rcu.c
+++ b/PLUGINS/src/rcu/rcu.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: rcu.c 1.1 2012/02/27 11:49:51 kls Exp $
+ * $Id: rcu.c 1.2 2012/03/07 14:22:44 kls Exp $
*/
#include <getopt.h>
@@ -16,7 +16,7 @@
#include <vdr/thread.h>
#include <vdr/tools.h>
-static const char *VERSION = "0.0.1";
+static const char *VERSION = "0.0.2";
static const char *DESCRIPTION = "Remote Control Unit";
#define REPEATLIMIT 150 // ms
@@ -44,7 +44,7 @@ private:
void SetString(const char *s);
bool DetectCode(unsigned char *Code);
virtual void Action(void);
- virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
+ virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView);
virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On);
public:
cRcuRemote(const char *DeviceName);
@@ -353,9 +353,9 @@ bool cRcuRemote::DetectCode(unsigned char *Code)
return false;
}
-void cRcuRemote::ChannelSwitch(const cDevice *Device, int ChannelNumber)
+void cRcuRemote::ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView)
{
- if (ChannelNumber && Device->IsPrimaryDevice())
+ if (ChannelNumber && LiveView)
SetNumber(cDevice::CurrentChannel());
}