diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-10-28 09:16:24 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-10-28 09:16:24 +0200 |
commit | af0e7a6193cd7e65d39e6ea7f7e878617d9ece00 (patch) | |
tree | ebb908725d5574afa0303a0868f6a3d8895c549d | |
parent | d67543b9ac52dda633a725c0561cfb230a372350 (diff) | |
download | vdr-af0e7a6193cd7e65d39e6ea7f7e878617d9ece00.tar.gz vdr-af0e7a6193cd7e65d39e6ea7f7e878617d9ece00.tar.bz2 |
Fixed deleting EPG events that have a running status of "pausing" or higher
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | epg.c | 10 |
3 files changed, 14 insertions, 4 deletions
@@ -4974,3 +4974,7 @@ Video Disk Recorder Revision History - Fixed setting audio track descriptions after a replay has been stopped (reported by Ulf Kiener, thanks to Marco Schlüßler for pointing out what caused the problem). + +2006-10-28: Version 1.4.3-4 + +- Fixed deleting EPG events that have a running status of "pausing" or higher. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.275 2006/10/20 13:37:37 kls Exp $ + * $Id: config.h 1.276 2006/10/28 09:15:00 kls Exp $ */ #ifndef __CONFIG_H @@ -21,7 +21,7 @@ // VDR's own version number: -#define VDRVERSION "1.4.3-3" +#define VDRVERSION "1.4.3-4" #define VDRVERSNUM 10403 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: @@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.c 1.80 2006/10/07 13:47:28 kls Exp $ + * $Id: epg.c 1.81 2006/10/28 09:12:42 kls Exp $ */ #include "epg.h" @@ -664,6 +664,8 @@ cEvent *cSchedule::AddEvent(cEvent *Event) void cSchedule::DelEvent(cEvent *Event) { if (Event->schedule == this) { + if (hasRunning && Event->IsRunning()) + ClrRunningStatus(); UnhashEvent(Event); events.Del(Event); } @@ -742,8 +744,10 @@ void cSchedule::SetRunningStatus(cEvent *Event, int RunningStatus, cChannel *Cha hasRunning = false; for (cEvent *p = events.First(); p; p = events.Next(p)) { if (p == Event) { - if (p->RunningStatus() > SI::RunningStatusNotRunning || RunningStatus > SI::RunningStatusNotRunning) + if (p->RunningStatus() > SI::RunningStatusNotRunning || RunningStatus > SI::RunningStatusNotRunning) { p->SetRunningStatus(RunningStatus, Channel); + break; + } } else if (RunningStatus >= SI::RunningStatusPausing && p->StartTime() < Event->StartTime()) p->SetRunningStatus(SI::RunningStatusNotRunning); @@ -797,6 +801,8 @@ void cSchedule::DropOutdated(time_t SegmentStart, time_t SegmentEnd, uchar Table // We can't delete the event right here because a timer might have // a pointer to it, so let's set its id and start time to 0 to have it // "phased out": + if (hasRunning && p->IsRunning()) + ClrRunningStatus(); UnhashEvent(p); p->eventID = 0; p->startTime = 0; |