diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-15 13:35:52 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-15 13:35:52 +0100 |
commit | 955d5eb012227fa6fa70f784d967e831a55e5c1b (patch) | |
tree | 589fff48592ff52acc4118f14cb7323a60b87507 /eitscan.c | |
parent | ce882e5cf0c5868fbfdd89942738dfe6e7ecc517 (diff) | |
download | vdr-955d5eb012227fa6fa70f784d967e831a55e5c1b.tar.gz vdr-955d5eb012227fa6fa70f784d967e831a55e5c1b.tar.bz2 |
Adapted the 'sky' plugin to use the actual channel IDs, and to fetch EPG data from www.bleb.org
Diffstat (limited to 'eitscan.c')
-rw-r--r-- | eitscan.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: eitscan.c 1.20 2004/01/17 15:38:11 kls Exp $ + * $Id: eitscan.c 1.21 2004/02/14 13:44:31 kls Exp $ */ #include "eitscan.h" @@ -146,8 +146,7 @@ void cEITScanner::Process(void) if (!(Device->Receiving(true) || Device->Replaying())) { const cChannel *Channel = ScanData->GetChannel(); if (Channel) { - //XXX if (Device->ProvidesTransponder(Channel)) { - if ((!Channel->Ca() || Channel->Ca() == Device->DeviceNumber() + 1 || Channel->Ca() >= 0x0100) && Device->ProvidesTransponder(Channel)) { //XXX temporary for the 'sky' plugin + if ((!Channel->Ca() || Channel->Ca() == Device->DeviceNumber() + 1 || Channel->Ca() >= 0x0100) && Device->ProvidesTransponder(Channel)) { if (Device == cDevice::PrimaryDevice() && !currentChannel) { currentChannel = Device->CurrentChannel(); Interface->Info("Starting EPG scan"); |