From 11df7f81006b440aa7a126c66bdbf932326fb7fc Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 11 May 2003 13:09:28 +0200 Subject: [PATCH] Further increased the timeout until an index file is considerd no longer to be written --- HISTORY | 2 ++ recording.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 41e22400..6811ad78 100644 --- a/HISTORY +++ b/HISTORY @@ -2135,3 +2135,5 @@ Video Disk Recorder Revision History - Updated 'channels.conf.terr' for Berlin (thanks to Juri Haberland). - Avoiding short display of the "Main" menu when pressing the "Recordings" button or the "Back" button during replay. +- Further increased the timeout until an index file is considerd no longer to be + written. diff --git a/recording.c b/recording.c index 23521a61..3610382e 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.76 2003/04/27 15:52:17 kls Exp $ + * $Id: recording.c 1.77 2003/05/11 13:09:08 kls Exp $ */ #include "recording.h" @@ -768,7 +768,7 @@ void cRecordingUserCommand::InvokeCommand(const char *State, const char *Recordi #define MAXINDEXCATCHUP 2 // seconds // The minimum age of an index file for considering it no longer to be written: -#define MININDEXAGE 300 // seconds +#define MININDEXAGE 3600 // seconds cIndexFile::cIndexFile(const char *FileName, bool Record) :resumeFile(FileName)