mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Removed signal handling and usleep(5000) from cDvbOsd::Cmd() (apparently this is no longer necessary with DVB driver 1.0.0pre2 or later). - If the primary device (as defined in setup.conf) doesn't have an MPEG decoder (and thus can't be used as a primary device) VDR now scans all devices at startup and uses the first one (if any) that actually has an MPEG decoder. That way this will also work automatically if the primary device is implemented by a plugin. - Fixed a possible deadlock when using the "Blue" button in the "Schedules" menu to switch to an other channel (thanks to Torsten Herz). - Fixed the EPG bugfix code number for the MAX_USEFUL_SUBTITLE_LENGTH fix (thanks to Torsten Herz for reporting this one). - Modified the EPG scanner to avoid CPU load peaks (thanks to Steffen Becker for reporting this one). - Fixed support for Viaccess CAMs (thanks to Axel Gruber for helping to debug this).
35 lines
698 B
C++
35 lines
698 B
C++
/*
|
|
* eitscan.h: EIT scanner
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: eitscan.h 1.2 2003/03/16 13:20:40 kls Exp $
|
|
*/
|
|
|
|
#ifndef __EITSCAN_H
|
|
#define __EITSCAN_H
|
|
|
|
#include <time.h>
|
|
#include "config.h"
|
|
|
|
class cEITScanner {
|
|
private:
|
|
enum { ActivityTimeout = 60,
|
|
ScanTimeout = 20
|
|
};
|
|
time_t lastScan, lastActivity;
|
|
int currentChannel;
|
|
int lastChannel[MAXDEVICES];
|
|
int numTransponders, *transponders;
|
|
bool TransponderScanned(cChannel *Channel);
|
|
public:
|
|
cEITScanner(void);
|
|
~cEITScanner();
|
|
bool Active(void) { return currentChannel; }
|
|
void Activity(void);
|
|
void Process(void);
|
|
};
|
|
|
|
#endif //__EITSCAN_H
|