diff options
author | Markus Ehrnsperger <markus@vdr1.(none)> | 2011-02-18 22:39:16 +0100 |
---|---|---|
committer | Markus Ehrnsperger <markus@vdr1.(none)> | 2011-02-18 22:39:16 +0100 |
commit | 6252a0fcd639e6f3fe6775044a2a996c21225c9c (patch) | |
tree | 9aefeb0dfcaebd8359bae9f73bcc957234d15db7 /vdr.c | |
parent | b4e66d3d624cc1cfbe2f435f02810f544633d993 (diff) | |
download | vdr-patch-lnbsharing-lnb-sharing-0.1.4.tar.gz vdr-patch-lnbsharing-lnb-sharing-0.1.4.tar.bz2 |
lnb-sharing 0.1.4HEADlnb-sharing-0.1.4master
Fix: Short before a recording starts, the system switches between black screen and channel. If VPS is used, the recording will not even start. Thanks to urknall @ vdr-portal.de for reporting this error and Uwe (Licherkette @ vdr-portal.de) for providing a Log
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -877,22 +877,21 @@ int main(int argc, char *argv[]) break; } bool timeout = Now - DeviceUsed[d->DeviceNumber()] > TIMERDEVICETIMEOUT; // only check other devices if they have been left alone for a while - if (d->MaySwitchTransponder()) { + if (d->MaySwitchTransponder() && d->GetMaxBadPriority(Timer->Channel()) == -2 ) { // LNB Sharing DeviceAvailable = true; // avoids using the actual device below if (timeout) - // Device = d; // only check other devices if they have been left alone for a while - if( d->GetMaxBadPriority(Timer->Channel()) <= 0) Device = d; // LNB Sharing + Device = d; // only check other devices if they have been left alone for a while } else if (timeout && !Device && InVpsMargin && !d->Receiving() && d->ProvidesTransponderExclusively(Timer->Channel())) // Device = d; // use this one only if no other with less impact can be found - if( d->GetMaxBadPriority(Timer->Channel()) <= 0) Device = d; // LNB Sharing + if( d->GetMaxBadPriority(Timer->Channel()) <= -1) Device = d; // LNB Sharing } } if (!Device && InVpsMargin && !DeviceAvailable) { cDevice *d = cDevice::ActualDevice(); if (!d->Receiving() && d->ProvidesTransponder(Timer->Channel()) && Now - DeviceUsed[d->DeviceNumber()] > TIMERDEVICETIMEOUT) // Device = d; // use the actual device as a last resort - if( d->GetMaxBadPriority(Timer->Channel()) <= 0) Device = d; // LNB Sharing + if( d->GetMaxBadPriority(Timer->Channel()) <= -1) Device = d; // LNB Sharing } // Switch the device to the transponder: |