Fixed detecting broken video data streams when recording

This commit is contained in:
Klaus Schmidinger 2014-02-21 09:20:36 +01:00
parent da13903228
commit 6d59e2866b
2 changed files with 4 additions and 3 deletions

View File

@ -8170,7 +8170,7 @@ Video Disk Recorder Revision History
- Fixed a superfluous call to the skin's SetRecording() function after renaming a - Fixed a superfluous call to the skin's SetRecording() function after renaming a
recording (reported by Christoph Haubrich). recording (reported by Christoph Haubrich).
2014-02-18: Version 2.1.5 2014-02-21: Version 2.1.5
- Now checking whether the primary device actually has a decoder before retuning the - Now checking whether the primary device actually has a decoder before retuning the
current channel after a change in its parameters. This fixes broken recordings on current channel after a change in its parameters. This fixes broken recordings on
@ -8200,3 +8200,4 @@ Video Disk Recorder Revision History
- Improved PAT/PMT scanning to speed up initial tuning to encrypted channels on - Improved PAT/PMT scanning to speed up initial tuning to encrypted channels on
transponders with many PAT entries (reported by Mariusz Bialonczyk). transponders with many PAT entries (reported by Mariusz Bialonczyk).
- Fixed the replay progress display for very long recordings. - Fixed the replay progress display for very long recordings.
- Fixed detecting broken video data streams when recording.

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: recorder.c 3.2 2014/01/01 12:46:37 kls Exp $ * $Id: recorder.c 3.3 2014/02/21 09:19:52 kls Exp $
*/ */
#include "recorder.h" #include "recorder.h"
@ -155,13 +155,13 @@ void cRecorder::Action(void)
recordFile->Write(pmt, TS_SIZE); recordFile->Write(pmt, TS_SIZE);
fileSize += TS_SIZE; fileSize += TS_SIZE;
} }
t.Set(MAXBROKENTIMEOUT);
} }
if (recordFile->Write(b, Count) < 0) { if (recordFile->Write(b, Count) < 0) {
LOG_ERROR_STR(fileName->Name()); LOG_ERROR_STR(fileName->Name());
break; break;
} }
fileSize += Count; fileSize += Count;
t.Set(MAXBROKENTIMEOUT);
} }
} }
ringBuffer->Del(Count); ringBuffer->Del(Count);