summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-03-20 13:12:07 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-03-20 13:12:07 +0100
commit14a38b1dba6f6cc9d0ec4dc46e001b7367616073 (patch)
treef09ba7c0aee8d338f21716c57d83c76ee18ca2c8 /eit.c
parent456ded045c228accff613c0ebaf7833d8164e3ec (diff)
downloadvdr-14a38b1dba6f6cc9d0ec4dc46e001b7367616073.tar.gz
vdr-14a38b1dba6f6cc9d0ec4dc46e001b7367616073.tar.bz2
Improved falling back to normal recording if the VPS data hasn't been seen for more than 30 seconds
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/eit.c b/eit.c
index a7d60c49..6c6381b1 100644
--- a/eit.c
+++ b/eit.c
@@ -8,7 +8,7 @@
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
*
- * $Id: eit.c 1.102 2005/01/02 11:52:12 kls Exp $
+ * $Id: eit.c 1.103 2005/03/20 12:33:51 kls Exp $
*/
#include "eit.h"
@@ -246,6 +246,8 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data)
if (Empty && Tid == 0x4E && getSectionNumber() == 0)
// ETR 211: an empty entry in section 0 of table 0x4E means there is currently no event running
pSchedule->ClrRunningStatus(channel);
+ if (Tid == 0x4E)
+ pSchedule->SetPresentSeen();
if (Modified) {
pSchedule->Sort();
Schedules->SetModified(pSchedule);