diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-04-04 13:38:13 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-04-04 13:38:13 +0200 |
commit | 8f1419fff59acea5c57e861819111cfc38dd193d (patch) | |
tree | 99eeb5509c2a162c4b943fd863ec4201b971d52b /timers.h | |
parent | b80c22e9c4097220cf4a1e2cce82daeca1ba4a36 (diff) | |
download | vdr-8f1419fff59acea5c57e861819111cfc38dd193d.tar.gz vdr-8f1419fff59acea5c57e861819111cfc38dd193d.tar.bz2 |
The margins for timer recordings are now always limited to the duration of the previous and next event
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 5.2 2021/01/14 10:29:05 kls Exp $ + * $Id: timers.h 5.3 2021/04/04 13:38:13 kls Exp $ */ #ifndef __TIMERS_H @@ -55,6 +55,7 @@ public: cTimer(const cTimer &Timer); virtual ~cTimer(); cTimer& operator= (const cTimer &Timer); + void CalcMargins(int &MarginStart, int &MarginStop, const cEvent *Event); virtual int Compare(const cListObject &ListObject) const; int Id(void) const { return id; } bool Recording(void) const { return HasFlags(tfRecording); } |