The EPG scanner now scans each transponder only once per cycle

This commit is contained in:
Klaus Schmidinger 2001-02-03 17:44:25 +01:00
parent 20d94646d1
commit 2adfad2823
3 changed files with 30 additions and 4 deletions

View File

@ -375,3 +375,4 @@ Video Disk Recorder Revision History
Dave Chapman). Existing files will be read normally (and the teletext PID set
to 0), but once they are written back (due to some channel editing) the file
will have the new format.
- The EPG scanner now scans each transponder only once per cycle.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbapi.c 1.56 2001/02/03 16:00:23 kls Exp $
* $Id: dvbapi.c 1.57 2001/02/03 17:43:21 kls Exp $
*/
#include "dvbapi.h"
@ -2408,6 +2408,24 @@ cEITScanner::cEITScanner(void)
lastScan = lastActivity = time(NULL);
currentChannel = 0;
lastChannel = 0;
numTransponders = 0;
transponders = NULL;
}
cEITScanner::~cEITScanner()
{
delete transponders;
}
bool cEITScanner::TransponderScanned(cChannel *Channel)
{
for (int i = 0; i < numTransponders; i++) {
if (transponders[i] == Channel->frequency)
return true;
}
transponders = (int *)realloc(transponders, ++numTransponders * sizeof(int));
transponders[numTransponders - 1] = Channel->frequency;
return false;
}
void cEITScanner::Activity(void)
@ -2432,10 +2450,12 @@ void cEITScanner::Process(void)
int oldCh = lastChannel;
int ch = oldCh + 1;
while (ch != oldCh) {
if (ch > Channels.MaxNumber())
if (ch > Channels.MaxNumber()) {
ch = 1;
numTransponders = 0;
}
cChannel *Channel = Channels.GetByNumber(ch);
if (Channel && Channel->pnr) {
if (Channel && Channel->pnr && !TransponderScanned(Channel)) {
if (DvbApi == cDvbApi::PrimaryDvbApi && !currentChannel)
currentChannel = DvbApi->Channel();
Channel->Switch(DvbApi, false);

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbapi.h 1.32 2001/02/03 15:59:35 kls Exp $
* $Id: dvbapi.h 1.33 2001/02/03 17:39:33 kls Exp $
*/
#ifndef __DVBAPI_H
@ -48,6 +48,8 @@ const char *IndexToHMSF(int Index, bool WithFrame = false);
int HMSFToIndex(const char *HMSF);
// Converts the given string (format: "hh:mm:ss.ff") to an index.
class cChannel;
class cRecordBuffer;
class cReplayBuffer;
class cTransferBuffer;
@ -256,8 +258,11 @@ private:
};
time_t lastScan, lastActivity;
int currentChannel, lastChannel;
int numTransponders, *transponders;
bool TransponderScanned(cChannel *Channel);
public:
cEITScanner(void);
~cEITScanner();
bool Active(void) { return currentChannel; }
void Activity(void);
void Process(void);