diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-12-28 12:28:37 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-12-28 12:28:37 +0100 |
commit | bf4655197dd85a0e868faea522485a331dffbfa4 (patch) | |
tree | 3abbb4cf20418fa263e553688afff6b5b834e179 /dvbdevice.c | |
parent | fbddcb2fd69fc44e2eed62285b794cde92da5840 (diff) | |
download | vdr-bf4655197dd85a0e868faea522485a331dffbfa4.tar.gz vdr-bf4655197dd85a0e868faea522485a331dffbfa4.tar.bz2 |
Revoked the check for low symbol rates on FF cards (some actually can do this)
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index d4d70f4d..8ef90a80 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.140 2005/12/03 13:36:08 kls Exp $ + * $Id: dvbdevice.c 1.141 2005/12/28 12:28:05 kls Exp $ */ #include "dvbdevice.h" @@ -738,8 +738,6 @@ bool cDvbDevice::ProvidesSource(int Source) const bool cDvbDevice::ProvidesTransponder(const cChannel *Channel) const { - if (HasDecoder() && Channel->Srate() < 10000) - return false; return ProvidesSource(Channel->Source()) && (!cSource::IsSat(Channel->Source()) || !Setup.DiSEqC || Diseqcs.Get(Channel->Source(), Channel->Frequency(), Channel->Polarization())); } @@ -749,7 +747,7 @@ bool cDvbDevice::ProvidesChannel(const cChannel *Channel, int Priority, bool *Ne bool hasPriority = Priority < 0 || Priority > this->Priority(); bool needsDetachReceivers = false; - if (ProvidesSource(Channel->Source()) && ProvidesTransponder(Channel) && ProvidesCa(Channel)) { + if (ProvidesSource(Channel->Source()) && ProvidesCa(Channel)) { result = hasPriority; if (Priority >= 0 && Receiving(true)) { if (dvbTuner->IsTunedTo(Channel)) { |