Fixed a busy loop in fast forward if the next video data file is missing

This commit is contained in:
Klaus Schmidinger
2007-04-28 15:18:02 +02:00
parent 32c689258a
commit 27c7603276
3 changed files with 12 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbplayer.c 1.45 2006/04/17 11:00:00 kls Exp $
* $Id: dvbplayer.c 1.46 2007/04/28 14:55:22 kls Exp $
*/
#include "dvbplayer.h"
@@ -402,8 +402,10 @@ void cDvbPlayer::Action(void)
bool TimeShiftMode = index->IsStillRecording();
int Index = index->GetNextIFrame(readIndex, playDir == pdForward, &FileNumber, &FileOffset, &Length, TimeShiftMode);
if (Index >= 0) {
if (!NextFile(FileNumber, FileOffset))
if (!NextFile(FileNumber, FileOffset)) {
readIndex = Index;
continue;
}
}
else {
if (!TimeShiftMode && playDir == pdForward) {