diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-09-09 16:09:05 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-09-09 16:09:05 +0200 |
commit | 19efbe45031cc5015e92d5dbffb018cf0cbcbd8d (patch) | |
tree | dd92fdce3713dcdeaa9d60319d053ecf5261d0f5 /recording.h | |
parent | ec78dbe9e4ac4aaeaebed94fe80833e0a1ed5abc (diff) | |
download | vdr-19efbe45031cc5015e92d5dbffb018cf0cbcbd8d.tar.gz vdr-19efbe45031cc5015e92d5dbffb018cf0cbcbd8d.tar.bz2 |
Fixed dropping out of replay mode while viewing a recording that is still going on
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recording.h b/recording.h index 677e354b..42fc1a20 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 1.26 2003/08/17 09:03:46 kls Exp $ + * $Id: recording.h 1.27 2003/09/09 16:00:56 kls Exp $ */ #ifndef __RECORDING_H @@ -12,6 +12,7 @@ #include <time.h> #include "config.h" +#include "thread.h" #include "timers.h" #include "tools.h" @@ -130,6 +131,7 @@ private: int size, last; tIndex *index; cResumeFile resumeFile; + cMutex mutex; bool CatchUp(int Index = -1); public: cIndexFile(const char *FileName, bool Record); |