diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-04-30 09:40:34 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-04-30 09:40:34 +0200 |
commit | fcbb206fdf4d0c5bda73cfd6c12a421c426ee428 (patch) | |
tree | 80a6d373c93a745c5193e043a59d28b936adb9ca /device.c | |
parent | f935c03c792ddf5f2aac6522bfa1597ac5507ca6 (diff) | |
download | vdr-fcbb206fdf4d0c5bda73cfd6c12a421c426ee428.tar.gz vdr-fcbb206fdf4d0c5bda73cfd6c12a421c426ee428.tar.bz2 |
Non-primary devices in Transfer mode are now also used for recording
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 1.139 2007/01/13 12:05:00 kls Exp $ + * $Id: device.c 1.140 2007/04/30 09:34:00 kls Exp $ */ #include "device.h" @@ -327,7 +327,7 @@ cDevice *cDevice::GetDevice(const cChannel *Channel, int Priority, bool LiveView // difference, because it results in the most significant bit of the result. uint32_t imp = 0; imp <<= 1; imp |= LiveView ? !device[i]->IsPrimaryDevice() || ndr : 0; // prefer the primary device for live viewing if we don't need to detach existing receivers - imp <<= 1; imp |= !device[i]->Receiving() || ndr; // use receiving devices if we don't need to detach existing receivers + imp <<= 1; imp |= !device[i]->Receiving() && (device[i] != cTransferControl::ReceiverDevice() || device[i]->IsPrimaryDevice()) || ndr; // use receiving devices if we don't need to detach existing receivers, but avoid primary device in local transfer mode imp <<= 1; imp |= device[i]->Receiving(); // avoid devices that are receiving imp <<= 1; imp |= device[i] == cTransferControl::ReceiverDevice(); // avoid the Transfer Mode receiver device imp <<= 8; imp |= min(max(device[i]->Priority() + MAXPRIORITY, 0), 0xFF); // use the device with the lowest priority (+MAXPRIORITY to assure that values -99..99 can be used) |