summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorMarkus Ehrnsperger <markus@vdr1.(none)>2011-02-08 20:57:16 +0100
committerMarkus Ehrnsperger <markus@vdr1.(none)>2011-02-08 20:57:16 +0100
commita6d58a2cfc617a048bbadf9cafc378a9c579aade (patch)
tree98071fe4ed752a1e158a59593dd7de31ebc1dd36 /dvbdevice.c
parentbbea9e80be431b7422aaa4a8a9c0a171ddc105d5 (diff)
downloadvdr-patch-lnbsharing-lnb-sharing-0.1.2.tar.gz
vdr-patch-lnbsharing-lnb-sharing-0.1.2.tar.bz2
lnb-sharing 0.1.2lnb-sharing-0.1.2
- Change: Make it easier to apply this patch together with the dynamite-Plugin patch. Note: this is mostly for maintainers of distributions and multi-patches. It will (must probably) not be possible for devices added with dynamite to share LNBs. Some concept work is required for this: How can VDR uniquely identify a device? How can a user identify such a device on OSD?
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index ab9496a..ae4d82e 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -261,7 +261,7 @@ private:
int adapter, frontend;
int tuneTimeout;
int lockTimeout;
- bool lnbSendSignals; // LNB Sharing
+ bool lnbSendSignals; // LNB Sharing. false if this device must not send signals to the LNB (like 22 kHz, ...).
time_t lastTimeoutReport;
fe_delivery_system frontendType;
cChannel channel;
@@ -274,7 +274,7 @@ private:
bool SetFrontend(void);
virtual void Action(void);
public:
- cDvbTuner(int Device, int Fd_Frontend, int Adapter, int Frontend, fe_delivery_system FrontendType, bool LnbSendSignals);
+ cDvbTuner(int Device, int Fd_Frontend, int Adapter, int Frontend, fe_delivery_system FrontendType, cDvbDevice *Dvbdevice); // LNB Sharing
virtual ~cDvbTuner();
const cChannel *GetTransponder(void) const { return &channel; }
bool IsTunedTo(const cChannel *Channel) const;
@@ -282,9 +282,13 @@ public:
bool Locked(int TimeoutMs = 0);
};
-cDvbTuner::cDvbTuner(int Device, int Fd_Frontend, int Adapter, int Frontend, fe_delivery_system FrontendType, bool LnbSendSignals) // LNB Sharing
+cDvbTuner::cDvbTuner(int Device, int Fd_Frontend, int Adapter, int Frontend, fe_delivery_system FrontendType, cDvbDevice *Dvbdevice) // LNB Sharing
{
- lnbSendSignals = LnbSendSignals; // LNB Sharing
+// LNB Sharing
+ if(Dvbdevice) {
+ lnbSendSignals = Dvbdevice->IsLnbSendSignals();
+ } else lnbSendSignals = true;
+// END LNB Sharing
device = Device;
fd_frontend = Fd_Frontend;
adapter = Adapter;
@@ -730,10 +734,8 @@ cDvbDevice::cDvbDevice(int Adapter, int Frontend)
lnbState = -1;
SetLnbNrFromSetup();
lnbSource = NULL;
+ dvbTuner = new cDvbTuner(CardIndex() + 1, fd_frontend, adapter, frontend, frontendType, this);
//ML-Ende
-
-
- dvbTuner = new cDvbTuner(CardIndex() + 1, fd_frontend, adapter, frontend, frontendType, lnbSendSignals);
}
}
else
@@ -1069,7 +1071,6 @@ void cDvbDevice::SetLnbNrFromSetup(void)
{
lnbNr = Setup.CardUsesLnbNr[CardIndex()];
isyslog("LNB-sharing: setting device %d to use LNB %d", CardIndex() + 1, lnbNr);
- lnbSendSignals = IsLnbSendSignals();
}
bool cDvbDevice::IsShareLnb(const cDevice *Device)