diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-08-26 13:03:14 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-08-26 13:03:14 +0200 |
commit | 6b5e9f56ed5315e7c1afa17940968695fabf3ba0 (patch) | |
tree | 89ef6286bff12e1c7cd289c1d082119e121c601c /eitscan.c | |
parent | 2d3cb812fbcf038cf14a792c375fd866b6420a10 (diff) | |
download | vdr-6b5e9f56ed5315e7c1afa17940968695fabf3ba0.tar.gz vdr-6b5e9f56ed5315e7c1afa17940968695fabf3ba0.tar.bz2 |
Implemented cDevice::ProvidesEIT()
Diffstat (limited to 'eitscan.c')
-rw-r--r-- | eitscan.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: eitscan.c 2.2 2011/08/12 14:18:04 kls Exp $ + * $Id: eitscan.c 2.3 2011/08/26 12:58:49 kls Exp $ */ #include "eitscan.h" @@ -146,7 +146,7 @@ void cEITScanner::Process(void) if (Device) { for (cScanData *ScanData = scanList->First(); ScanData; ScanData = scanList->Next(ScanData)) { const cChannel *Channel = ScanData->GetChannel(); - if (Channel) { + if (Channel && Device->ProvidesEIT()) { if (!Channel->Ca() || Channel->Ca() == Device->DeviceNumber() + 1 || Channel->Ca() >= CA_ENCRYPTED_MIN) { if (Device->ProvidesTransponder(Channel)) { if (!Device->Receiving()) { |