diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-08-15 15:24:54 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-08-15 15:24:54 +0200 |
commit | fc19cf3527d42d88f428b6fa7a935c2dc7cfe781 (patch) | |
tree | b2fffbbd57d46fd1243c40bc139244aa50bcdbfc /recording.c | |
parent | 79c7d1fe9b8f945cd568651f0393c91159be1760 (diff) | |
download | vdr-fc19cf3527d42d88f428b6fa7a935c2dc7cfe781.tar.gz vdr-fc19cf3527d42d88f428b6fa7a935c2dc7cfe781.tar.bz2 |
Fixed staying off the end of an ongoing recording while replaying in time shift mode
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.c b/recording.c index 06f63255..2e3676a3 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 1.80 2003/05/30 13:23:54 kls Exp $ + * $Id: recording.c 1.81 2003/08/15 15:23:10 kls Exp $ */ #include "recording.h" @@ -770,7 +770,7 @@ void cRecordingUserCommand::InvokeCommand(const char *State, const char *Recordi #define INDEXFILESUFFIX "/index.vdr" // The number of frames to stay off the end in case of time shift: -#define INDEXSAFETYLIMIT 100 // frames +#define INDEXSAFETYLIMIT 150 // frames // The maximum time to wait before giving up while catching up on an index file: #define MAXINDEXCATCHUP 8 // seconds |