summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-12-03 13:50:19 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-12-03 13:50:19 +0100
commit48902e885f605edfab1643dcbe1db1ba4ba4c302 (patch)
tree5f5402fae8cce4e85086b74c7e7f3e078978e3c5 /dvbdevice.c
parent922649037fb7a3f4241ebbb7a64712a9f7052981 (diff)
downloadvdr-48902e885f605edfab1643dcbe1db1ba4ba4c302.tar.gz
vdr-48902e885f605edfab1643dcbe1db1ba4ba4c302.tar.bz2
Now checking the channel's symbol rate in order to avoid problems on full featured DVB cards with symbol rates below 10000
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 43e55389..d4d70f4d 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.139 2005/11/29 17:18:04 kls Exp $
+ * $Id: dvbdevice.c 1.140 2005/12/03 13:36:08 kls Exp $
*/
#include "dvbdevice.h"
@@ -738,6 +738,8 @@ 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()));
}
@@ -747,7 +749,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()) && ProvidesCa(Channel)) {
+ if (ProvidesSource(Channel->Source()) && ProvidesTransponder(Channel) && ProvidesCa(Channel)) {
result = hasPriority;
if (Priority >= 0 && Receiving(true)) {
if (dvbTuner->IsTunedTo(Channel)) {