Improved responsiveness during replay when close to the recording's end

This commit is contained in:
Klaus Schmidinger 2013-01-25 14:34:08 +01:00
parent a906cd52df
commit a5426b58c6
2 changed files with 4 additions and 2 deletions

View File

@ -7547,3 +7547,4 @@ Video Disk Recorder Revision History
subtitle on the dvbhddevice in "high level" OSD mode. subtitle on the dvbhddevice in "high level" OSD mode.
- Returning 0 from cDvbSdFfDevice::NumProvidedSystems() if option --outputonly is given. - Returning 0 from cDvbSdFfDevice::NumProvidedSystems() if option --outputonly is given.
- The index file is now closed after initially reading it if it is older than 3600 seconds. - The index file is now closed after initially reading it if it is older than 3600 seconds.
- Improved responsiveness during replay when close to the recording's end.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: recording.c 2.84 2013/01/25 14:31:04 kls Exp $ * $Id: recording.c 2.85 2013/01/25 14:33:16 kls Exp $
*/ */
#include "recording.h" #include "recording.h"
@ -1865,7 +1865,8 @@ bool cIndexFile::CatchUp(int Index)
LOG_ERROR_STR(*fileName); LOG_ERROR_STR(*fileName);
if (Index < last) if (Index < last)
break; break;
cCondWait::SleepMs(INDEXCATCHUPWAIT); cCondVar CondVar;
CondVar.TimedWait(mutex, INDEXCATCHUPWAIT);
} }
} }
return index != NULL; return index != NULL;